OLD | NEW |
1 `test` provides a standard way of writing and running tests in Dart. | 1 `test` provides a standard way of writing and running tests in Dart. |
2 | 2 |
3 ## Writing Tests | 3 ## Writing Tests |
4 | 4 |
5 Tests are specified using the top-level [`test()`][test] function, and test | 5 Tests are specified using the top-level [`test()`][test] function, and test |
6 assertions are made using [`expect()`][expect]: | 6 assertions are made using [`expect()`][expect]: |
7 | 7 |
8 [test]: http://www.dartdocs.org/documentation/test/latest/index.html#test/test@i
d_test | 8 [test]: http://www.dartdocs.org/documentation/test/latest/index.html#test/test@i
d_test |
9 [expect]: http://www.dartdocs.org/documentation/test/latest/index.html#test/test
@id_expect | 9 [expect]: http://www.dartdocs.org/documentation/test/latest/index.html#test/test
@id_expect |
10 | 10 |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 // ... | 392 // ... |
393 }, timeout: new Timeout.factor(2)) | 393 }, timeout: new Timeout.factor(2)) |
394 }, timeout: new Timeout(new Duration(minutes: 1))); | 394 }, timeout: new Timeout(new Duration(minutes: 1))); |
395 } | 395 } |
396 ``` | 396 ``` |
397 | 397 |
398 Nested timeouts apply in order from outermost to innermost. That means that | 398 Nested timeouts apply in order from outermost to innermost. That means that |
399 "even slower test" will take two minutes to time out, since it multiplies the | 399 "even slower test" will take two minutes to time out, since it multiplies the |
400 group's timeout by 2. | 400 group's timeout by 2. |
401 | 401 |
| 402 ### Platform-Specific Configuration |
| 403 |
| 404 Sometimes a test may need to be configured differently for different platforms. |
| 405 Windows might run your code slower than other platforms, or your DOM |
| 406 manipulation might not work right on Safari yet. For these cases, you can use |
| 407 the `@OnPlatform` annotation and the `onPlatform` named parameter to `test()` |
| 408 and `group()`. For example: |
| 409 |
| 410 ```dart |
| 411 @OnPlatform(const { |
| 412 // Give Windows some extra wiggle-room before timing out. |
| 413 "windows": const Timeout.factor(2) |
| 414 }) |
| 415 |
| 416 import "package:test/test.dart"; |
| 417 |
| 418 void main() { |
| 419 test("do a thing", () { |
| 420 // ... |
| 421 }, onPlatform: { |
| 422 "safari": new Skip("Safari is currently broken (see #1234)") |
| 423 }); |
| 424 } |
| 425 ``` |
| 426 |
| 427 Both the annotation and the parameter take a map. The map's keys are [platform |
| 428 selectors](#platform-selector-syntax) which describe the platforms for which the |
| 429 specialized configuration applies. Its values are instances of some of the same |
| 430 annotation classes that can be used for a suite: `Skip` and `Timeout`. A value |
| 431 can also be a list of these values. |
| 432 |
| 433 If multiple platforms match, the configuration is applied in order from first to |
| 434 last, just as they would in nested groups. This means that for configuration |
| 435 like duration-based timeouts, the last matching value wins. |
| 436 |
402 ## Testing With `barback` | 437 ## Testing With `barback` |
403 | 438 |
404 Packages using the `barback` transformer system may need to test code that's | 439 Packages using the `barback` transformer system may need to test code that's |
405 created or modified using transformers. The test runner handles this using the | 440 created or modified using transformers. The test runner handles this using the |
406 `--pub-serve` option, which tells it to load the test code from a `pub serve` | 441 `--pub-serve` option, which tells it to load the test code from a `pub serve` |
407 instance rather than from the filesystem. **This feature is only supported on | 442 instance rather than from the filesystem. **This feature is only supported on |
408 Dart `1.9.2` and higher.** | 443 Dart `1.9.2` and higher.** |
409 | 444 |
410 Before using the `--pub-serve` option, add the `test/pub_serve` transformer to | 445 Before using the `--pub-serve` option, add the `test/pub_serve` transformer to |
411 your `pubspec.yaml`. This transformer adds the necessary bootstrapping code that | 446 your `pubspec.yaml`. This transformer adds the necessary bootstrapping code that |
(...skipping 19 matching lines...) Expand all Loading... |
431 | 466 |
432 In this case, the port is `8081`. In another terminal, pass this port to | 467 In this case, the port is `8081`. In another terminal, pass this port to |
433 `--pub-serve` and otherwise invoke `pub run test:test` as normal: | 468 `--pub-serve` and otherwise invoke `pub run test:test` as normal: |
434 | 469 |
435 ```shell | 470 ```shell |
436 $ pub run test:test --pub-serve=8081 -p chrome | 471 $ pub run test:test --pub-serve=8081 -p chrome |
437 "pub serve" is compiling test/my_app_test.dart... | 472 "pub serve" is compiling test/my_app_test.dart... |
438 "pub serve" is compiling test/utils_test.dart... | 473 "pub serve" is compiling test/utils_test.dart... |
439 00:00 +42: All tests passed! | 474 00:00 +42: All tests passed! |
440 ``` | 475 ``` |
OLD | NEW |