| OLD | NEW |
| 1 # Changelog - unittest | 1 # Changelog - unittest |
| 2 | 2 |
| 3 ##0.10.0-dev | 3 ##0.10.0-dev |
| 4 | 4 |
| 5 * Each test is run in a separate `Zone`. This ensures that any exceptions that | 5 * Each test is run in a separate `Zone`. This ensures that any exceptions that |
| 6 occur is async operations are reported back to the source test case. | 6 occur is async operations are reported back to the source test case. |
| 7 * **DEPRECATED** `guardAsync`, `protectAsync0`, `protectAsync1`, | 7 * **DEPRECATED** `guardAsync`, `protectAsync0`, `protectAsync1`, |
| 8 and `protectAsync2` | 8 and `protectAsync2` |
| 9 * Running each test in a `Zone` addresses the need for these methods. | 9 * Running each test in a `Zone` addresses the need for these methods. |
| 10 * **NEW!** `expectAsync` replaces the now deprecated `expectAsync0`, |
| 11 `expectAsync1` and `expectAsync2` |
| 12 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 13 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 10 * `TestCase`: | 14 * `TestCase`: |
| 11 * Removed properties: `setUp`, `tearDown`, `testFunction` | 15 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 12 * `enabled` is now get-only | 16 * `enabled` is now get-only |
| 13 * Removed methods: `pass`, `fail`, `error` | 17 * Removed methods: `pass`, `fail`, `error` |
| 14 * `interactive_html_config.dart` has been removed. | 18 * `interactive_html_config.dart` has been removed. |
| 15 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 19 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 16 `solo_group` now throw a `StateError` if called while tests are running. | 20 `solo_group` now throw a `StateError` if called while tests are running. |
| 17 * `rerunTests` has been removed. | 21 * `rerunTests` has been removed. |
| 18 | 22 |
| 19 ##0.9.3 - 2014-01-13 | 23 ##0.9.3 - 2014-01-13 |
| OLD | NEW |