| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |