OLD | NEW |
| 1 ## 0.12.1+1 |
| 2 |
| 3 * Produce a better error message when a `CustomMatcher`'s feature throws. |
| 4 |
| 5 ## 0.12.1 |
| 6 |
| 7 * Add containsAllInOrder matcher for Iterables |
| 8 |
| 9 ## 0.12.0+2 |
| 10 |
| 11 * Fix all strong-mode warnings. |
| 12 |
1 ## 0.12.0+1 | 13 ## 0.12.0+1 |
2 | 14 |
3 * Fix test files to use `test` instead of `unittest` pkg. | 15 * Fix test files to use `test` instead of `unittest` pkg. |
4 | 16 |
5 ## 0.12.0 | 17 ## 0.12.0 |
6 | 18 |
7 * Moved a number of members to the | 19 * Moved a number of members to the |
8 [`unittest`](https://pub.dartlang.org/packages/unittest) package. | 20 [`unittest`](https://pub.dartlang.org/packages/unittest) package. |
9 * `TestFailure`, `ErrorFormatter`, `expect`, `fail`, and 'wrapAsync'. | 21 * `TestFailure`, `ErrorFormatter`, `expect`, `fail`, and 'wrapAsync'. |
10 * `completes`, `completion`, `throws`, and `throwsA` Matchers. | 22 * `completes`, `completion`, `throws`, and `throwsA` Matchers. |
11 * The `Throws` class. | 23 * The `Throws` class. |
12 * All of the `throws...Error` Matchers. | 24 * All of the `throws...Error` Matchers. |
13 | 25 |
14 * Removed `FailureHandler`, `DefaultFailureHandler`, | 26 * Removed `FailureHandler`, `DefaultFailureHandler`, |
15 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler`. | 27 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler`. |
16 Now that `expect` is in the `unittest` package, these are no longer needed. | 28 Now that `expect` is in the `unittest` package, these are no longer needed. |
17 | 29 |
18 * Removed the `name` parameter for `isInstanceOf`. This was previously | 30 * Removed the `name` parameter for `isInstanceOf`. This was previously |
19 deprecated, and is no longer necessary since all language implementations now | 31 deprecated, and is no longer necessary since all language implementations now |
20 support converting the type parameter to a string directly. | 32 support converting the type parameter to a string directly. |
21 | 33 |
| 34 ## 0.11.4+6 |
| 35 |
| 36 * Fix a bug introduced in 0.11.4+5 in which operator matchers broke when taking |
| 37 lists of matchers. |
| 38 |
| 39 ## 0.11.4+5 |
| 40 |
| 41 * Fix all strong-mode warnings. |
| 42 |
22 ## 0.11.4+4 | 43 ## 0.11.4+4 |
23 | 44 |
24 * Deprecate the name parameter to `isInstanceOf`. All language implementations | 45 * Deprecate the name parameter to `isInstanceOf`. All language implementations |
25 now support converting the type parameter to a string directly. | 46 now support converting the type parameter to a string directly. |
26 | 47 |
27 ## 0.11.4+3 | 48 ## 0.11.4+3 |
28 | 49 |
29 * Fix the examples for `equalsIgnoringWhitespace`. | 50 * Fix the examples for `equalsIgnoringWhitespace`. |
30 | 51 |
31 ## 0.11.4+2 | 52 ## 0.11.4+2 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 * Matchers related to bad language use have been removed. These represent code | 114 * Matchers related to bad language use have been removed. These represent code |
94 structure that should rarely or never be validated in tests. | 115 structure that should rarely or never be validated in tests. |
95 * `isAbstractClassInstantiationError` | 116 * `isAbstractClassInstantiationError` |
96 * `throwsAbstractClassInstantiationError` | 117 * `throwsAbstractClassInstantiationError` |
97 * `isFallThroughError` | 118 * `isFallThroughError` |
98 * `throwsFallThroughError` | 119 * `throwsFallThroughError` |
99 | 120 |
100 * Added types to a number of method arguments. | 121 * Added types to a number of method arguments. |
101 | 122 |
102 * The structure of the library and test code has been updated. | 123 * The structure of the library and test code has been updated. |
OLD | NEW |