OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library analyzer.test.generated.test_all; | 5 library analyzer.test.generated.test_all; |
6 | 6 |
7 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 7 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
8 | 8 |
9 import 'all_the_rest_test.dart' as all_the_rest; | 9 import 'all_the_rest_test.dart' as all_the_rest; |
10 import 'bazel_test.dart' as bazel_test; | 10 import 'bazel_test.dart' as bazel_test; |
11 import 'checked_mode_compile_time_error_code_driver_test.dart' | 11 import 'checked_mode_compile_time_error_code_driver_test.dart' |
12 as checked_mode_compile_time_error_code_driver_test; | 12 as checked_mode_compile_time_error_code_driver_test; |
13 import 'checked_mode_compile_time_error_code_test.dart' | 13 import 'checked_mode_compile_time_error_code_test.dart' |
14 as checked_mode_compile_time_error_code_test; | 14 as checked_mode_compile_time_error_code_test; |
15 import 'compile_time_error_code_driver_test.dart' | 15 import 'compile_time_error_code_driver_test.dart' |
16 as compile_time_error_code_driver_test; | 16 as compile_time_error_code_driver_test; |
17 import 'compile_time_error_code_test.dart' as compile_time_error_code_test; | 17 import 'compile_time_error_code_test.dart' as compile_time_error_code_test; |
18 import 'constant_test.dart' as constant_test; | 18 import 'constant_test.dart' as constant_test; // ignore: deprecated_member_use |
19 import 'declaration_resolver_test.dart' as declaration_resolver_test; | 19 import 'declaration_resolver_test.dart' as declaration_resolver_test; |
20 import 'element_resolver_test.dart' as element_resolver_test; | 20 import 'element_resolver_test.dart' as element_resolver_test; |
21 import 'engine_test.dart' as engine_test; | 21 import 'engine_test.dart' as engine_test; |
22 import 'error_suppression_driver_test.dart' as error_suppression_driver_test; | 22 import 'error_suppression_driver_test.dart' as error_suppression_driver_test; |
23 import 'error_suppression_test.dart' as error_suppression_test; | 23 import 'error_suppression_test.dart' as error_suppression_test; |
24 import 'gn_test.dart' as gn_test; | 24 import 'gn_test.dart' as gn_test; |
25 import 'hint_code_driver_test.dart' as hint_code_driver_test; | 25 import 'hint_code_driver_test.dart' as hint_code_driver_test; |
26 import 'hint_code_test.dart' as hint_code_test; | 26 import 'hint_code_test.dart' as hint_code_test; |
27 import 'incremental_resolver_test.dart' as incremental_resolver_test; | 27 import 'incremental_resolver_test.dart' as incremental_resolver_test; |
28 import 'inheritance_manager_test.dart' as inheritance_manager_test; | 28 import 'inheritance_manager_test.dart' as inheritance_manager_test; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 static_type_warning_code_test.main(); | 95 static_type_warning_code_test.main(); |
96 static_warning_code_driver_test.main(); | 96 static_warning_code_driver_test.main(); |
97 static_warning_code_test.main(); | 97 static_warning_code_test.main(); |
98 strong_mode_driver_test.main(); | 98 strong_mode_driver_test.main(); |
99 strong_mode_test.main(); | 99 strong_mode_test.main(); |
100 type_system_test.main(); | 100 type_system_test.main(); |
101 utilities_dart_test.main(); | 101 utilities_dart_test.main(); |
102 utilities_test.main(); | 102 utilities_test.main(); |
103 }, name: 'generated'); | 103 }, name: 'generated'); |
104 } | 104 } |
OLD | NEW |