Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Side by Side Diff: CHANGELOG.md

Issue 1463023002: Declare compatibility with Dart 1.14 and 1.15. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 0.12.5+2
2
3 * Declare compatibility with Dart 1.14 and 1.15.
4
5 ## 0.12.5+1
6
7 * Fixed a deadlock bug when using `setUpAll()` and `tearDownAll()`.
8
1 ## 0.12.5 9 ## 0.12.5
2 10
3 * Add `setUpAll()` and `tearDownAll()` methods that run callbacks before and 11 * Add `setUpAll()` and `tearDownAll()` methods that run callbacks before and
4 after all tests in a group or suite. **Note that these methods are for special 12 after all tests in a group or suite. **Note that these methods are for special
5 cases and should be avoided**—they make it very easy to accidentally introduce 13 cases and should be avoided**—they make it very easy to accidentally introduce
6 dependencies between tests. Use `setUp()` and `tearDown()` instead if 14 dependencies between tests. Use `setUp()` and `tearDown()` instead if
7 possible. 15 possible.
8 16
9 * Allow `setUp()` and `tearDown()` to be called multiple times within the same 17 * Allow `setUp()` and `tearDown()` to be called multiple times within the same
10 group. 18 group.
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, 328 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`,
321 `expectAsyncUntil1` and `expectAsyncUntil2` 329 `expectAsyncUntil1` and `expectAsyncUntil2`
322 * `TestCase`: 330 * `TestCase`:
323 * Removed properties: `setUp`, `tearDown`, `testFunction` 331 * Removed properties: `setUp`, `tearDown`, `testFunction`
324 * `enabled` is now get-only 332 * `enabled` is now get-only
325 * Removed methods: `pass`, `fail`, `error` 333 * Removed methods: `pass`, `fail`, `error`
326 * `interactive_html_config.dart` has been removed. 334 * `interactive_html_config.dart` has been removed.
327 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and 335 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and
328 `solo_group` now throw a `StateError` if called while tests are running. 336 `solo_group` now throw a `StateError` if called while tests are running.
329 * `rerunTests` has been removed. 337 * `rerunTests` has been removed.
OLDNEW
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698