OLD | NEW |
| 1 ##0.12.0 |
| 2 |
| 3 * Removed `FailureHandler`, `DefaultFailureHandler`, |
| 4 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler` which |
| 5 are exported from the `matcher` package and will be removed. They existed |
| 6 to enable integration between `unittest` and `matcher` that is being |
| 7 streamlined. |
| 8 |
| 9 * Moved a number of APIs from `matcher` into `unittest`, including: |
| 10 `completes`, `completion`, `ErrorFormatter`, `expect`,`fail`, `prints`, |
| 11 `TestFailure`, `Throws`, and all of the `throws` methods. |
| 12 |
| 13 * `expect` no longer has a named `failureHandler` argument. |
| 14 |
| 15 * `expect` added an optional `formatter` argument. |
| 16 |
| 17 * `completion` argument `id` renamed to `description`. |
| 18 |
| 19 * Removed several members from `SimpleConfiguration` that relied on removed |
| 20 functionality: `onExpectFailure`, `stopTestOnExpectFailure`, and 'name'. |
| 21 |
1 ##0.11.5 | 22 ##0.11.5 |
2 | 23 |
3 * Bumped the version constraint for `matcher`. | 24 * Bumped the version constraint for `matcher`. |
4 | 25 |
5 ##0.11.4 | 26 ##0.11.4 |
6 | 27 |
7 * Bump the version constraint for `matcher`. | 28 * Bump the version constraint for `matcher`. |
8 | 29 |
9 ##0.11.3 | 30 ##0.11.3 |
10 | 31 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 119 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
99 `expectAsyncUntil1` and `expectAsyncUntil2` | 120 `expectAsyncUntil1` and `expectAsyncUntil2` |
100 * `TestCase`: | 121 * `TestCase`: |
101 * Removed properties: `setUp`, `tearDown`, `testFunction` | 122 * Removed properties: `setUp`, `tearDown`, `testFunction` |
102 * `enabled` is now get-only | 123 * `enabled` is now get-only |
103 * Removed methods: `pass`, `fail`, `error` | 124 * Removed methods: `pass`, `fail`, `error` |
104 * `interactive_html_config.dart` has been removed. | 125 * `interactive_html_config.dart` has been removed. |
105 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 126 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
106 `solo_group` now throw a `StateError` if called while tests are running. | 127 `solo_group` now throw a `StateError` if called while tests are running. |
107 * `rerunTests` has been removed. | 128 * `rerunTests` has been removed. |
OLD | NEW |