OLD | NEW |
1 Run Existing Tests | 1 Run Existing Tests |
2 ================== | 2 ================== |
3 | 3 |
4 See the output of | 4 See the output of |
5 | 5 |
6 ../tools/test.py --help | 6 ../tools/test.py --help |
7 | 7 |
8 for how to run tests. | 8 for how to run tests. |
9 | 9 |
10 See also | 10 See also |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 ../tools/testing/dart/multitest.dart | 33 ../tools/testing/dart/multitest.dart |
34 | 34 |
35 for how to create tests that pass by failing with a known error. For | 35 for how to create tests that pass by failing with a known error. For |
36 example, | 36 example, |
37 | 37 |
38 ... | 38 ... |
39 int x = "not an int"; /// 01: static type warning | 39 int x = "not an int"; /// 01: static type warning |
40 ... | 40 ... |
41 | 41 |
42 as part of a test will only pass the "--compiler dartanalyzer" test if | 42 as part of a test will only pass the "--compiler dart2analyzer" test if |
43 the assignment generates a static type warning. | 43 the assignment generates a static type warning. |
OLD | NEW |