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