OLD | NEW |
| (Empty) |
1 ## 0.11.3+1 | |
2 | |
3 * Fix the `prints` matcher test on dart2js. | |
4 | |
5 ## 0.11.3 | |
6 | |
7 * Add a `prints` matcher that matches output a callback emits via `print`. | |
8 | |
9 ## 0.11.2 | |
10 | |
11 * Add an `isNotEmpty` matcher. | |
12 | |
13 ## 0.11.1+1 | |
14 | |
15 * Refactored libraries and tests. | |
16 | |
17 * Fixed spelling mistake. | |
18 | |
19 ## 0.11.1 | |
20 | |
21 * Added `isNaN` and `isNotNaN` matchers. | |
22 | |
23 ## 0.11.0 | |
24 | |
25 * Removed deprecated matchers. | |
26 | |
27 ## 0.10.1+1 | |
28 | |
29 * Get the tests passing when run on dart2js in minified mode. | |
30 | |
31 ## 0.10.1 | |
32 | |
33 * Compare sets order-independently when using `equals()`. | |
34 | |
35 ## 0.10.0+3 | |
36 | |
37 * Removed `@deprecated` annotation on matchers due to | |
38 [Issue 19173](https://code.google.com/p/dart/issues/detail?id=19173) | |
39 | |
40 ## 0.10.0+2 | |
41 | |
42 * Added types to a number of constants. | |
43 | |
44 ## 0.10.0+1 | |
45 | |
46 * Matchers related to bad language use have been removed. These represent code | |
47 structure that should rarely or never be validated in tests. | |
48 * `isAbstractClassInstantiationError` | |
49 * `throwsAbstractClassInstantiationError` | |
50 * `isFallThroughError` | |
51 * `throwsFallThroughError` | |
52 | |
53 * Added types to a number of method arguments. | |
54 | |
55 * The structure of the library and test code has been updated. | |
OLD | NEW |