dart-sdk/tests
Johnni Winther b0ecbef3cc Introduce isAbstractlyInstantiated to avoid exact masks of abstract classes.
Classes can be instantiated directly, abstractly or indirectly:

When [cls] is directly instantiated: This means that at runtime instances of exactly [cls] are assumed to exist.

When [cls] is abstractly instantiated: This means that at runtime instances of [cls] or unknown subclasses of [cls] are assumed to exist.

This is used to mark native and/or reflectable classes as instantiated. For native classes we do not know the exact class that instantiates [cls] so [cls] here represents the root of the subclasses. For reflectable classes we need event abstract classes to be 'live' even though they cannot themselves be instantiated.

When [cls] is indirectly instantiated: This means that a subclass of [cls] is directly or abstractly instantiated.

R=sigmund@google.com

Review URL: https://codereview.chromium.org/2443953002 .
2016-10-28 08:45:57 +02:00
..
_chrome
benchmark_smoke Add test harness option for app snapshots with unoptimized code. 2016-05-26 10:37:47 -07:00
co19 Reland "Merge more Kernel infrastructure from kernel_sdk SDK fork." 2016-10-27 10:09:22 +02:00
compiler Introduce isAbstractlyInstantiated to avoid exact masks of abstract classes. 2016-10-28 08:45:57 +02:00
corelib Change Set.difference API to accept Set<Object>. 2016-10-20 14:37:15 +02:00
html Fix browser test status. 2016-10-18 12:50:58 -07:00
isolate Enable now-passing tests for Android precompilation 2016-10-21 12:16:47 -07:00
kernel Remove custom expect.dart from Kernel tests 2016-10-27 15:14:03 +02:00
language Produce the correct assertion failure expression in the face of inlining 2016-10-27 07:29:22 -07:00
lib Fix browser test status. 2016-10-18 12:50:58 -07:00
standalone Fix http_server_response_test.dart not to use snapshots as its data. 2016-10-21 13:56:52 -07:00
utils
light_unittest.dart Upgrading tests with unittest deprecations 2014-03-31 18:33:18 +00:00
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.