| OLD | NEW |
| 1 ##0.12.0-alpha.0 | 1 ## 0.12.0-beta.1 |
| 2 | 2 |
| 3 * Add a missing dependency on `string_scanner`. |
| 4 |
| 5 ## 0.12.0-beta.0 |
| 6 |
| 3 * Added support for a test runner, which can be run via `pub run | 7 * Added support for a test runner, which can be run via `pub run |
| 4 unittest:unittest`. By default it runs all files recursively in the `test/` | 8 unittest:unittest`. By default it runs all files recursively in the `test/` |
| 5 directory that end in `_test.dart` and aren't in a `packages/` directory. | 9 directory that end in `_test.dart` and aren't in a `packages/` directory. |
| 6 | 10 |
| 7 * As part of moving to a runner-based model, most test configuration is moving | 11 * As part of moving to a runner-based model, most test configuration is moving |
| 8 out of the test file and into the runner. As such, many ancillary APIs are | 12 out of the test file and into the runner. As such, many ancillary APIs are |
| 9 stubbed out and marked as deprecated. They still exist to make adoption | 13 stubbed out and marked as deprecated. They still exist to make adoption |
| 10 easier, but they're now no-ops and will be removed before the stable 0.12.0 | 14 easier, but they're now no-ops and will be removed before the stable 0.12.0 |
| 11 release. These APIs include `skip_` and `solo_` functions, `Configuration` and | 15 release. These APIs include `skip_` and `solo_` functions, `Configuration` and |
| 12 all its subclasses, `TestCase`, `TestFunction`, `unittestConfiguration`, | 16 all its subclasses, `TestCase`, `TestFunction`, `unittestConfiguration`, |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 141 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 138 `expectAsyncUntil1` and `expectAsyncUntil2` | 142 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 139 * `TestCase`: | 143 * `TestCase`: |
| 140 * Removed properties: `setUp`, `tearDown`, `testFunction` | 144 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 141 * `enabled` is now get-only | 145 * `enabled` is now get-only |
| 142 * Removed methods: `pass`, `fail`, `error` | 146 * Removed methods: `pass`, `fail`, `error` |
| 143 * `interactive_html_config.dart` has been removed. | 147 * `interactive_html_config.dart` has been removed. |
| 144 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 148 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 145 `solo_group` now throw a `StateError` if called while tests are running. | 149 `solo_group` now throw a `StateError` if called while tests are running. |
| 146 * `rerunTests` has been removed. | 150 * `rerunTests` has been removed. |
| OLD | NEW |