Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: dart/pkg/unittest/expect.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/pkg/unittest/description.dart ('k') | dart/pkg/unittest/future_matchers.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of unittest;
2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /** 5 /**
8 * This is the main assertion function. It asserts that [actual] 6 * This is the main assertion function. It asserts that [actual]
9 * matches the [matcher]. [matcher] is optional and defaults to isTrue, 7 * matches the [matcher]. [matcher] is optional and defaults to isTrue,
10 * so expect can be used with a single predicate argument. [reason] 8 * so expect can be used with a single predicate argument. [reason]
11 * is optional and is typically not supplied if a reasonable matcher is 9 * is optional and is typically not supplied if a reasonable matcher is
12 * explicitly provided, as a reason can be generated from the matcher. 10 * explicitly provided, as a reason can be generated from the matcher.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 * formatter is returned; this allows custom expect handlers to easily 137 * formatter is returned; this allows custom expect handlers to easily
140 * get a reference to the default formatter. 138 * get a reference to the default formatter.
141 */ 139 */
142 ErrorFormatter configureExpectFormatter([ErrorFormatter formatter = null]) { 140 ErrorFormatter configureExpectFormatter([ErrorFormatter formatter = null]) {
143 if (formatter == null) { 141 if (formatter == null) {
144 formatter = _defaultErrorFormatter; 142 formatter = _defaultErrorFormatter;
145 } 143 }
146 return _assertErrorFormatter = formatter; 144 return _assertErrorFormatter = formatter;
147 } 145 }
148 146
OLDNEW
« no previous file with comments | « dart/pkg/unittest/description.dart ('k') | dart/pkg/unittest/future_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698