OLD | NEW |
1 # Changelog - unittest | 1 ##0.10.1+2 |
2 | 2 |
| 3 * Fixed deprecation message for `mock`. |
| 4 |
| 5 ##0.10.1+1 |
| 6 |
| 7 * Fixed CHANGELOG |
| 8 * Moved to triple-slash for all doc comments. |
| 9 |
3 ##0.10.1 | 10 ##0.10.1 |
4 | 11 |
5 * **DEPRECATED** | 12 * **DEPRECATED** |
6 * `matcher.dart` and `mirror_matchers.dart` are now in the `matcher` | 13 * `matcher.dart` and `mirror_matchers.dart` are now in the `matcher` |
7 package. | 14 package. |
8 * `mock.dart` is now in the `mock` package. | 15 * `mock.dart` is now in the `mock` package. |
9 * `equals` now allows a nested matcher as an expected list element or map value | 16 * `equals` now allows a nested matcher as an expected list element or map value |
10 when doing deep matching. | 17 when doing deep matching. |
11 * `expectAsync` and `expectAsyncUntil` now support up to 6 positional arguments | 18 * `expectAsync` and `expectAsyncUntil` now support up to 6 positional arguments |
12 and correctly handle functions with optional positional arguments with default | 19 and correctly handle functions with optional positional arguments with default |
(...skipping 13 matching lines...) Expand all Loading... |
26 * `TestCase`: | 33 * `TestCase`: |
27 * Removed properties: `setUp`, `tearDown`, `testFunction` | 34 * Removed properties: `setUp`, `tearDown`, `testFunction` |
28 * `enabled` is now get-only | 35 * `enabled` is now get-only |
29 * Removed methods: `pass`, `fail`, `error` | 36 * Removed methods: `pass`, `fail`, `error` |
30 * `interactive_html_config.dart` has been removed. | 37 * `interactive_html_config.dart` has been removed. |
31 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 38 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
32 `solo_group` now throw a `StateError` if called while tests are running. | 39 `solo_group` now throw a `StateError` if called while tests are running. |
33 * `rerunTests` has been removed. | 40 * `rerunTests` has been removed. |
34 | 41 |
35 ##0.9.3 - 2014-01-13 | 42 ##0.9.3 - 2014-01-13 |
OLD | NEW |