| OLD | NEW |
| (Empty) |
| 1 ##0.11.4 | |
| 2 | |
| 3 * Bump the version constraint for `matcher`. | |
| 4 | |
| 5 ##0.11.3 | |
| 6 | |
| 7 * Narrow the constraint on matcher to ensure that new features are reflected in | |
| 8 unittest's version. | |
| 9 | |
| 10 ##0.11.2 | |
| 11 | |
| 12 * Prints a warning instead of throwing an error when setting the test | |
| 13 configuration after it has already been set. The first configuration is always | |
| 14 used. | |
| 15 | |
| 16 ##0.11.1+1 | |
| 17 | |
| 18 * Fix bug in withTestEnvironment where test cases were not reinitialized if | |
| 19 called multiple times. | |
| 20 | |
| 21 ##0.11.1 | |
| 22 | |
| 23 * Add `reason` named argument to `expectAsync` and `expectAsyncUntil`, which has | |
| 24 the same definition as `expect`'s `reason` argument. | |
| 25 * Added support for private test environments. | |
| 26 | |
| 27 ##0.11.0+6 | |
| 28 | |
| 29 * Refactored package tests. | |
| 30 | |
| 31 ##0.11.0+5 | |
| 32 | |
| 33 * Release test functions after each test is run. | |
| 34 | |
| 35 ##0.11.0+4 | |
| 36 | |
| 37 * Fix for [20153](https://code.google.com/p/dart/issues/detail?id=20153) | |
| 38 | |
| 39 ##0.11.0+3 | |
| 40 | |
| 41 * Updated maximum `matcher` version. | |
| 42 | |
| 43 ##0.11.0+2 | |
| 44 | |
| 45 * Removed unused files from tests and standardized remaining test file names. | |
| 46 | |
| 47 ##0.11.0+1 | |
| 48 | |
| 49 * Widen the version constraint for `stack_trace`. | |
| 50 | |
| 51 ##0.11.0 | |
| 52 | |
| 53 * Deprecated methods have been removed: | |
| 54 * `expectAsync0`, `expectAsync1`, and `expectAsync2` - use `expectAsync` | |
| 55 instead | |
| 56 * `expectAsyncUntil0`, `expectAsyncUntil1`, and `expectAsyncUntil2` - use | |
| 57 `expectAsyncUntil` instead | |
| 58 * `guardAsync` - no longer needed | |
| 59 * `protectAsync0`, `protectAsync1`, and `protectAsync2` - no longer needed | |
| 60 * `matcher.dart` and `mirror_matchers.dart` have been removed. They are now in | |
| 61 the `matcher` package. | |
| 62 * `mock.dart` has been removed. It is now in the `mock` package. | |
| 63 | |
| 64 ##0.10.1+2 | |
| 65 | |
| 66 * Fixed deprecation message for `mock`. | |
| 67 | |
| 68 ##0.10.1+1 | |
| 69 | |
| 70 * Fixed CHANGELOG | |
| 71 * Moved to triple-slash for all doc comments. | |
| 72 | |
| 73 ##0.10.1 | |
| 74 | |
| 75 * **DEPRECATED** | |
| 76 * `matcher.dart` and `mirror_matchers.dart` are now in the `matcher` | |
| 77 package. | |
| 78 * `mock.dart` is now in the `mock` package. | |
| 79 * `equals` now allows a nested matcher as an expected list element or map value | |
| 80 when doing deep matching. | |
| 81 * `expectAsync` and `expectAsyncUntil` now support up to 6 positional arguments | |
| 82 and correctly handle functions with optional positional arguments with default | |
| 83 values. | |
| 84 | |
| 85 ##0.10.0 | |
| 86 | |
| 87 * Each test is run in a separate `Zone`. This ensures that any exceptions that | |
| 88 occur is async operations are reported back to the source test case. | |
| 89 * **DEPRECATED** `guardAsync`, `protectAsync0`, `protectAsync1`, | |
| 90 and `protectAsync2` | |
| 91 * Running each test in a `Zone` addresses the need for these methods. | |
| 92 * **NEW!** `expectAsync` replaces the now deprecated `expectAsync0`, | |
| 93 `expectAsync1` and `expectAsync2` | |
| 94 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | |
| 95 `expectAsyncUntil1` and `expectAsyncUntil2` | |
| 96 * `TestCase`: | |
| 97 * Removed properties: `setUp`, `tearDown`, `testFunction` | |
| 98 * `enabled` is now get-only | |
| 99 * Removed methods: `pass`, `fail`, `error` | |
| 100 * `interactive_html_config.dart` has been removed. | |
| 101 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | |
| 102 `solo_group` now throw a `StateError` if called while tests are running. | |
| 103 * `rerunTests` has been removed. | |
| OLD | NEW |