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 seperate `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 * `TestCase`: | 10 * `TestCase`: |
11 * Removed properties: `setUp`, `tearDown`, `testFunction` | 11 * Removed properties: `setUp`, `tearDown`, `testFunction` |
12 * `enabled` is now get-only | 12 * `enabled` is now get-only |
13 * Removed methods: `pass`, `fail`, `error` | 13 * Removed methods: `pass`, `fail`, `error` |
14 * `interactive_html_config.dart` has been removed. | 14 * `interactive_html_config.dart` has been removed. |
15 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 15 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
16 `solo_group` now throw a `StateError` if called while tests are running. | 16 `solo_group` now throw a `StateError` if called while tests are running. |
17 * `rerunTests` has been removed. | 17 * `rerunTests` has been removed. |
18 | 18 |
19 ##0.9.3 - 2014-01-13 | 19 ##0.9.3 - 2014-01-13 |
OLD | NEW |