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

Side by Side Diff: CHANGELOG.md

Issue 1044953004: Gracefully handle tests that print. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Created 5 years, 8 months 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 | lib/src/backend/invoker.dart » ('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.0-beta.1 1 ### 0.12.0-beta.1
2 2
3 * Add a `--name` (shorthand `-n`) flag to the test runner for selecting which 3 * Add a `--name` (shorthand `-n`) flag to the test runner for selecting which
4 test to run. 4 test to run.
5 5
6 * Ensure that `print()` in tests always prints on its own line.
7
8 * Forward `print()`s from browser tests to the command-line reporter.
9
6 * Add a missing dependency on `string_scanner`. 10 * Add a missing dependency on `string_scanner`.
7 11
8 ## 0.12.0-beta.0 12 ## 0.12.0-beta.0
9 13
10 * Added support for a test runner, which can be run via `pub run 14 * Added support for a test runner, which can be run via `pub run
11 unittest:unittest`. By default it runs all files recursively in the `test/` 15 unittest:unittest`. By default it runs all files recursively in the `test/`
12 directory that end in `_test.dart` and aren't in a `packages/` directory. 16 directory that end in `_test.dart` and aren't in a `packages/` directory.
13 17
14 * As part of moving to a runner-based model, most test configuration is moving 18 * As part of moving to a runner-based model, most test configuration is moving
15 out of the test file and into the runner. As such, many ancillary APIs are 19 out of the test file and into the runner. As such, many ancillary APIs are
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, 148 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`,
145 `expectAsyncUntil1` and `expectAsyncUntil2` 149 `expectAsyncUntil1` and `expectAsyncUntil2`
146 * `TestCase`: 150 * `TestCase`:
147 * Removed properties: `setUp`, `tearDown`, `testFunction` 151 * Removed properties: `setUp`, `tearDown`, `testFunction`
148 * `enabled` is now get-only 152 * `enabled` is now get-only
149 * Removed methods: `pass`, `fail`, `error` 153 * Removed methods: `pass`, `fail`, `error`
150 * `interactive_html_config.dart` has been removed. 154 * `interactive_html_config.dart` has been removed.
151 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and 155 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and
152 `solo_group` now throw a `StateError` if called while tests are running. 156 `solo_group` now throw a `StateError` if called while tests are running.
153 * `rerunTests` has been removed. 157 * `rerunTests` has been removed.
OLDNEW
« no previous file with comments | « no previous file | lib/src/backend/invoker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698