OLD | NEW |
---|---|
1 ## 0.12.0 | |
2 | |
3 * Moved a number of members to the | |
4 [`unittest`](https://pub.dartlang.org/packages/unittest) package. | |
nweiz
2015/02/17 23:17:42
Nit: indent +2. Also below.
kevmoo
2015/02/18 00:33:40
Done.
| |
5 * `TestFailure`, `ErrorFormatter`, `expect`, `fail`, and 'wrapAsync' | |
nweiz
2015/02/17 23:17:42
Nit: add a period.
kevmoo
2015/02/18 00:33:40
Done.
| |
6 * `completes`, `completion`, `throws`, and `throwsA` Matchers. | |
7 * The `Throws` class. | |
8 * All of the `throws...Error` Matchers. | |
nweiz
2015/02/17 23:17:42
Have you checked to be sure this nested list rende
kevmoo
2015/02/18 00:33:40
Yup
| |
9 | |
10 * Removed `FailureHandler`, `DefaultFailureHandler`, | |
11 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler`. | |
12 Now that `expect` is in the `unittest` package, these are no longer needed. | |
13 | |
1 ## 0.11.4+1 | 14 ## 0.11.4+1 |
2 | 15 |
3 * Correctly match and print `String`s containing characters that must be | 16 * Correctly match and print `String`s containing characters that must be |
4 represented as escape sequences. | 17 represented as escape sequences. |
5 | 18 |
6 ## 0.11.4 | 19 ## 0.11.4 |
7 | 20 |
8 * Remove the type checks in the `isEmpty` and `isNotEmpty` matchers and simply | 21 * Remove the type checks in the `isEmpty` and `isNotEmpty` matchers and simply |
9 access the `isEmpty` respectively `isNotEmpty` fields. This allows them to | 22 access the `isEmpty` respectively `isNotEmpty` fields. This allows them to |
10 work with custom collections. See [Issue | 23 work with custom collections. See [Issue |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
59 * Matchers related to bad language use have been removed. These represent code | 72 * Matchers related to bad language use have been removed. These represent code |
60 structure that should rarely or never be validated in tests. | 73 structure that should rarely or never be validated in tests. |
61 * `isAbstractClassInstantiationError` | 74 * `isAbstractClassInstantiationError` |
62 * `throwsAbstractClassInstantiationError` | 75 * `throwsAbstractClassInstantiationError` |
63 * `isFallThroughError` | 76 * `isFallThroughError` |
64 * `throwsFallThroughError` | 77 * `throwsFallThroughError` |
65 | 78 |
66 * Added types to a number of method arguments. | 79 * Added types to a number of method arguments. |
67 | 80 |
68 * The structure of the library and test code has been updated. | 81 * The structure of the library and test code has been updated. |
OLD | NEW |