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

Side by Side Diff: pkg/matcher/lib/src/interfaces.dart

Issue 208823005: pkg/matcher (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nit Created 6 years, 9 months 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 | « pkg/matcher/lib/src/future_matchers.dart ('k') | pkg/matcher/lib/src/iterable_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 // 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
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of unittest.matcher; 5 library matcher.interfaces;
6 6
7 // To decouple the reporting of errors, and allow for extensibility of 7 // To decouple the reporting of errors, and allow for extensibility of
8 // matchers, we make use of some interfaces. 8 // matchers, we make use of some interfaces.
9 9
10 /** 10 /**
11 * The ErrorFormatter type is used for functions that 11 * The ErrorFormatter type is used for functions that
12 * can be used to build up error reports upon [expect] failures. 12 * can be used to build up error reports upon [expect] failures.
13 * There is one built-in implementation ([defaultErrorFormatter]) 13 * There is one built-in implementation ([defaultErrorFormatter])
14 * which is used by the default failure handler. If the failure handler 14 * which is used by the default failure handler. If the failure handler
15 * is replaced it may be desirable to replace the [stringDescription] 15 * is replaced it may be desirable to replace the [stringDescription]
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 * the [reason] (argument from [expect]), some additonal [matchState] 94 * the [reason] (argument from [expect]), some additonal [matchState]
95 * generated by the [matcher], and a verbose flag which controls in 95 * generated by the [matcher], and a verbose flag which controls in
96 * some cases how much [matchState] information is used. It will use 96 * some cases how much [matchState] information is used. It will use
97 * these to create a detailed error message (typically by calling 97 * these to create a detailed error message (typically by calling
98 * an [ErrorFormatter]) and then call [fail] with this message. 98 * an [ErrorFormatter]) and then call [fail] with this message.
99 */ 99 */
100 void failMatch(actual, Matcher matcher, String reason, 100 void failMatch(actual, Matcher matcher, String reason,
101 Map matchState, bool verbose); 101 Map matchState, bool verbose);
102 } 102 }
103 103
OLDNEW
« no previous file with comments | « pkg/matcher/lib/src/future_matchers.dart ('k') | pkg/matcher/lib/src/iterable_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698