dart-sdk/tests
2016-08-03 22:44:28 +02:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Initial status file updates for $hot_reload_rollback 2016-08-02 11:03:44 -07:00
compiler Avoid using call-through stub on calls to fields. 2016-07-26 18:02:05 -07:00
corelib Revert "Add fast-mode Uri class." 2016-07-20 14:32:52 +02:00
html Update status for html/js_util_test on IE. 2016-07-28 15:30:48 +02:00
isolate Initial status file updates for $hot_reload_rollback 2016-08-02 11:03:44 -07:00
language Initial status file updates for $hot_reload_rollback 2016-08-02 11:03:44 -07:00
lib Fix typo in status file 2016-08-03 08:34:11 -07:00
standalone Better error-message when bind fails. 2016-08-03 22:44:28 +02:00
try fix all instances of "the the" 2016-05-13 12:38:25 -07:00
utils Initial status file updates for $hot_reload_rollback 2016-08-02 11:03:44 -07:00
light_unittest.dart
README

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.