dart-sdk/tests
2016-06-17 09:59:15 -07:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Update status for dart2js co19 tests. 2016-06-16 14:37:20 +02:00
compiler Serialize and process patch metadata 2016-06-16 12:21:35 +02:00
corelib Fix Windows time zone name extraction. Update API docs 2016-06-14 13:51:19 -07:00
html Revert "Revert "Make Safari tests more robust."" 2016-06-15 04:29:33 -07:00
isolate Make VM resolvePackageUri fail on package:foo and package:/foo. 2016-06-14 12:22:15 +02:00
language Allow rethrow in nested try statements 2016-06-16 16:04:53 -07:00
lib Make timer test more robust. 2016-06-16 14:30:11 -07:00
standalone Fix for issue 26555, do not inherit package root and package config from the parent isolate when doing Isolate.spawn 2016-06-17 09:59:15 -07:00
try fix all instances of "the the" 2016-05-13 12:38:25 -07:00
utils Fix bots. I missed deleting another file. 2016-05-24 13:36:47 -07:00
light_unittest.dart
README Remove old java-based analyzer from test scripts and status files 2015-12-17 14:44:57 +01:00

Run Existing Tests
==================

See the output of

  ../tools/test.py --help

for how to run tests.

See also

  https://code.google.com/p/dart/wiki/Building#Testing

for detailed examples.

Create New Tests
================

See comments above

  factory StandardTestSuite.forDirectory

in

  ../tools/testing/dart/test_suite.dart

for the default test directory layout. By default test-file names must
end in "_test.dart", but some test suites, such as ./co19, subclass
StandardTestSuite and override this default.

See comments at the beginning of

  ../tools/testing/dart/multitest.dart

for how to create tests that pass by failing with a known error. For
example,

  ...
  int x = "not an int"; /// 01: static type warning
  ...

as part of a test will only pass the "--compiler dart2analyzer" test if
the assignment generates a static type warning.