| OLD | NEW |
| 1 ### 0.12.0-beta.2 | 1 ### 0.12.0-beta.2 |
| 2 | 2 |
| 3 * Rename the package to `test`. The `unittest` package will continue to exist | 3 * Rename the package to `test`. The `unittest` package will continue to exist |
| 4 through the `0.12.0` cycle, but it's deprecated and will just export the | 4 through the `0.12.0` cycle, but it's deprecated and will just export the |
| 5 `test` package. | 5 `test` package. |
| 6 | 6 |
| 7 * Remove the deprecated members from `test`. These members will remain in |
| 8 `unittest` for now. |
| 9 |
| 7 ### 0.12.0-beta.1 | 10 ### 0.12.0-beta.1 |
| 8 | 11 |
| 9 * Add a `--name` (shorthand `-n`) flag to the test runner for selecting which | 12 * Add a `--name` (shorthand `-n`) flag to the test runner for selecting which |
| 10 test to run. | 13 test to run. |
| 11 | 14 |
| 12 * Ensure that `print()` in tests always prints on its own line. | 15 * Ensure that `print()` in tests always prints on its own line. |
| 13 | 16 |
| 14 * Forward `print()`s from browser tests to the command-line reporter. | 17 * Forward `print()`s from browser tests to the command-line reporter. |
| 15 | 18 |
| 16 * Add a missing dependency on `string_scanner`. | 19 * Add a missing dependency on `string_scanner`. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 157 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 155 `expectAsyncUntil1` and `expectAsyncUntil2` | 158 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 156 * `TestCase`: | 159 * `TestCase`: |
| 157 * Removed properties: `setUp`, `tearDown`, `testFunction` | 160 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 158 * `enabled` is now get-only | 161 * `enabled` is now get-only |
| 159 * Removed methods: `pass`, `fail`, `error` | 162 * Removed methods: `pass`, `fail`, `error` |
| 160 * `interactive_html_config.dart` has been removed. | 163 * `interactive_html_config.dart` has been removed. |
| 161 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 164 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 162 `solo_group` now throw a `StateError` if called while tests are running. | 165 `solo_group` now throw a `StateError` if called while tests are running. |
| 163 * `rerunTests` has been removed. | 166 * `rerunTests` has been removed. |
| OLD | NEW |