OLD | NEW |
---|---|
1 ##0.12.0 | |
2 | |
3 * Removed `FailureHandler`, `DefaultFailureHandler`, | |
4 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler`. These | |
nweiz
2015/01/26 22:44:09
Indent +2 here and below.
kevmoo
2015/01/27 00:11:29
Done.
| |
5 are no longer needed. | |
nweiz
2015/01/26 22:44:09
Explain why they're no longer needed. Imagine you'
kevmoo
2015/01/27 00:11:29
Done.
| |
6 | |
7 * Moved a number of APIs from `matcher`, including: | |
nweiz
2015/01/26 22:44:09
"from `matcher`" -> "from `matcher` into `unittest
kevmoo
2015/01/27 00:11:29
Done.
| |
8 `completes`, `completion`,`ErrorFormatter`,`expect`,`fail`,`prints`, | |
nweiz
2015/01/26 22:44:09
Add spaces after commas.
kevmoo
2015/01/27 00:11:29
Done.
| |
9 `TestFailure`,`Throws`, and all of the `throws` methods. | |
10 | |
11 * `expect` no longer has a named `FailureHandler` argument. | |
12 | |
13 * `expect` added an optional `ErrorFormatter` argument. | |
nweiz
2015/01/26 22:44:09
Including the name of the argument will be more us
kevmoo
2015/01/27 00:11:29
Done.
| |
14 | |
15 * Removed several members from `SimpleConfiguration` that relied on removed | |
16 functionality: `onExpectFailure`, `onTestResult`, and | |
17 `stopTestOnExpectFailure`. | |
18 | |
1 ##0.11.5 | 19 ##0.11.5 |
2 | 20 |
3 * Bumped the version constraint for `matcher`. | 21 * Bumped the version constraint for `matcher`. |
4 | 22 |
5 ##0.11.4 | 23 ##0.11.4 |
6 | 24 |
7 * Bump the version constraint for `matcher`. | 25 * Bump the version constraint for `matcher`. |
8 | 26 |
9 ##0.11.3 | 27 ##0.11.3 |
10 | 28 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
98 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 116 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
99 `expectAsyncUntil1` and `expectAsyncUntil2` | 117 `expectAsyncUntil1` and `expectAsyncUntil2` |
100 * `TestCase`: | 118 * `TestCase`: |
101 * Removed properties: `setUp`, `tearDown`, `testFunction` | 119 * Removed properties: `setUp`, `tearDown`, `testFunction` |
102 * `enabled` is now get-only | 120 * `enabled` is now get-only |
103 * Removed methods: `pass`, `fail`, `error` | 121 * Removed methods: `pass`, `fail`, `error` |
104 * `interactive_html_config.dart` has been removed. | 122 * `interactive_html_config.dart` has been removed. |
105 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 123 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
106 `solo_group` now throw a `StateError` if called while tests are running. | 124 `solo_group` now throw a `StateError` if called while tests are running. |
107 * `rerunTests` has been removed. | 125 * `rerunTests` has been removed. |
OLD | NEW |