OLD | NEW |
(Empty) | |
| 1 ## 0.12.0+1 |
| 2 |
| 3 * Fix test files to use `test` instead of `unittest` pkg. |
| 4 |
| 5 ## 0.12.0 |
| 6 |
| 7 * Moved a number of members to the |
| 8 [`unittest`](https://pub.dartlang.org/packages/unittest) package. |
| 9 * `TestFailure`, `ErrorFormatter`, `expect`, `fail`, and 'wrapAsync'. |
| 10 * `completes`, `completion`, `throws`, and `throwsA` Matchers. |
| 11 * The `Throws` class. |
| 12 * All of the `throws...Error` Matchers. |
| 13 |
| 14 * Removed `FailureHandler`, `DefaultFailureHandler`, |
| 15 `configureExpectFailureHandler`, and `getOrCreateExpectFailureHandler`. |
| 16 Now that `expect` is in the `unittest` package, these are no longer needed. |
| 17 |
| 18 * Removed the `name` parameter for `isInstanceOf`. This was previously |
| 19 deprecated, and is no longer necessary since all language implementations now |
| 20 support converting the type parameter to a string directly. |
| 21 |
| 22 ## 0.11.4+4 |
| 23 |
| 24 * Deprecate the name parameter to `isInstanceOf`. All language implementations |
| 25 now support converting the type parameter to a string directly. |
| 26 |
| 27 ## 0.11.4+3 |
| 28 |
| 29 * Fix the examples for `equalsIgnoringWhitespace`. |
| 30 |
| 31 ## 0.11.4+2 |
| 32 |
| 33 * Improve the formatting of strings that contain unprintable ASCII characters. |
| 34 |
| 35 ## 0.11.4+1 |
| 36 |
| 37 * Correctly match and print `String`s containing characters that must be |
| 38 represented as escape sequences. |
| 39 |
| 40 ## 0.11.4 |
| 41 |
| 42 * Remove the type checks in the `isEmpty` and `isNotEmpty` matchers and simply |
| 43 access the `isEmpty` respectively `isNotEmpty` fields. This allows them to |
| 44 work with custom collections. See [Issue |
| 45 21792](https://code.google.com/p/dart/issues/detail?id=21792) and [Issue |
| 46 21562](https://code.google.com/p/dart/issues/detail?id=21562) |
| 47 |
| 48 ## 0.11.3+1 |
| 49 |
| 50 * Fix the `prints` matcher test on dart2js. |
| 51 |
| 52 ## 0.11.3 |
| 53 |
| 54 * Add a `prints` matcher that matches output a callback emits via `print`. |
| 55 |
| 56 ## 0.11.2 |
| 57 |
| 58 * Add an `isNotEmpty` matcher. |
| 59 |
| 60 ## 0.11.1+1 |
| 61 |
| 62 * Refactored libraries and tests. |
| 63 |
| 64 * Fixed spelling mistake. |
| 65 |
| 66 ## 0.11.1 |
| 67 |
| 68 * Added `isNaN` and `isNotNaN` matchers. |
| 69 |
| 70 ## 0.11.0 |
| 71 |
| 72 * Removed deprecated matchers. |
| 73 |
| 74 ## 0.10.1+1 |
| 75 |
| 76 * Get the tests passing when run on dart2js in minified mode. |
| 77 |
| 78 ## 0.10.1 |
| 79 |
| 80 * Compare sets order-independently when using `equals()`. |
| 81 |
| 82 ## 0.10.0+3 |
| 83 |
| 84 * Removed `@deprecated` annotation on matchers due to |
| 85 [Issue 19173](https://code.google.com/p/dart/issues/detail?id=19173) |
| 86 |
| 87 ## 0.10.0+2 |
| 88 |
| 89 * Added types to a number of constants. |
| 90 |
| 91 ## 0.10.0+1 |
| 92 |
| 93 * Matchers related to bad language use have been removed. These represent code |
| 94 structure that should rarely or never be validated in tests. |
| 95 * `isAbstractClassInstantiationError` |
| 96 * `throwsAbstractClassInstantiationError` |
| 97 * `isFallThroughError` |
| 98 * `throwsFallThroughError` |
| 99 |
| 100 * Added types to a number of method arguments. |
| 101 |
| 102 * The structure of the library and test code has been updated. |
OLD | NEW |