OLD | NEW |
| 1 ##0.11.2 |
| 2 |
| 3 * Prints a warning instead of throwing an error when setting the test |
| 4 configuration after it has already been set. The first configuration is always |
| 5 used. |
| 6 |
1 ##0.11.1+1 | 7 ##0.11.1+1 |
2 | 8 |
3 * Fix bug in withTestEnvironment where test cases were not reinitialized if | 9 * Fix bug in withTestEnvironment where test cases were not reinitialized if |
4 called multiple times. | 10 called multiple times. |
5 | 11 |
6 ##0.11.1 | 12 ##0.11.1 |
7 | 13 |
8 * Add `reason` named argument to `expectAsync` and `expectAsyncUntil`, which has | 14 * Add `reason` named argument to `expectAsync` and `expectAsyncUntil`, which has |
9 the same definition as `expect`'s `reason` argument. | 15 the same definition as `expect`'s `reason` argument. |
10 * Added support for private test environments. | 16 * Added support for private test environments. |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 85 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
80 `expectAsyncUntil1` and `expectAsyncUntil2` | 86 `expectAsyncUntil1` and `expectAsyncUntil2` |
81 * `TestCase`: | 87 * `TestCase`: |
82 * Removed properties: `setUp`, `tearDown`, `testFunction` | 88 * Removed properties: `setUp`, `tearDown`, `testFunction` |
83 * `enabled` is now get-only | 89 * `enabled` is now get-only |
84 * Removed methods: `pass`, `fail`, `error` | 90 * Removed methods: `pass`, `fail`, `error` |
85 * `interactive_html_config.dart` has been removed. | 91 * `interactive_html_config.dart` has been removed. |
86 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 92 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
87 `solo_group` now throw a `StateError` if called while tests are running. | 93 `solo_group` now throw a `StateError` if called while tests are running. |
88 * `rerunTests` has been removed. | 94 * `rerunTests` has been removed. |
OLD | NEW |