Skip to content

Commit 2e4f8a0

Browse files
committed
Add missing test suites to the generated/test_all suite.
R=brianwilkerson@google.com BUG= Review URL: https://codereview.chromium.org/1878413002 .
1 parent 7bc093b commit 2e4f8a0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pkg/analyzer/test/generated/test_all.dart

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,31 @@ import 'package:unittest/unittest.dart';
88

99
import '../utils.dart';
1010
import 'all_the_rest_test.dart' as all_the_rest;
11+
import 'checked_mode_compile_time_error_code_test.dart'
12+
as checked_mode_compile_time_error_code_test;
1113
import 'compile_time_error_code_test.dart' as compile_time_error_code_test;
1214
import 'constant_test.dart' as constant_test;
1315
import 'declaration_resolver_test.dart' as declaration_resolver_test;
16+
import 'element_resolver_test.dart' as element_resolver_test;
1417
import 'engine_test.dart' as engine_test;
1518
import 'error_suppression_test.dart' as error_suppression_test;
19+
import 'hint_code_test.dart' as hint_code_test;
1620
import 'incremental_resolver_test.dart' as incremental_resolver_test;
1721
import 'incremental_scanner_test.dart' as incremental_scanner_test;
22+
import 'inheritance_manager_test.dart' as inheritance_manager_test;
1823
import 'java_core_test.dart' as java_core_test;
1924
import 'java_io_test.dart' as java_io_test;
2025
import 'non_error_resolver_test.dart' as non_error_resolver_test;
26+
import 'non_hint_code_test.dart' as non_hint_code_test;
2127
import 'parser_test.dart' as parser_test;
2228
import 'resolver_test.dart' as resolver_test;
2329
import 'scanner_test.dart' as scanner_test;
30+
import 'simple_resolver_test.dart' as simple_resolver_test;
2431
import 'source_factory_test.dart' as source_factory_test;
2532
import 'static_type_analyzer_test.dart' as static_type_analyzer_test;
2633
import 'static_type_warning_code_test.dart' as static_type_warning_code_test;
2734
import 'static_warning_code_test.dart' as static_warning_code_test;
35+
import 'strong_mode_test.dart' as strong_mode_test;
2836
import 'type_system_test.dart' as type_system_test;
2937
import 'utilities_test.dart' as utilities_test;
3038

@@ -33,23 +41,30 @@ main() {
3341
initializeTestEnvironment();
3442
group('generated tests', () {
3543
all_the_rest.main();
44+
checked_mode_compile_time_error_code_test.main();
3645
compile_time_error_code_test.main();
3746
constant_test.main();
3847
declaration_resolver_test.main();
48+
element_resolver_test.main();
3949
engine_test.main();
4050
error_suppression_test.main();
51+
hint_code_test.main();
4152
incremental_resolver_test.main();
4253
incremental_scanner_test.main();
54+
inheritance_manager_test.main();
4355
java_core_test.main();
4456
java_io_test.main();
4557
non_error_resolver_test.main();
58+
non_hint_code_test.main();
4659
parser_test.main();
4760
resolver_test.main();
4861
scanner_test.main();
62+
simple_resolver_test.main();
4963
source_factory_test.main();
5064
static_type_analyzer_test.main();
5165
static_type_warning_code_test.main();
5266
static_warning_code_test.main();
67+
strong_mode_test.main();
5368
type_system_test.main();
5469
utilities_test.main();
5570
});

0 commit comments

Comments
 (0)