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 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
6 | 6 |
| 7 import '../tool/spec/check_all_test.dart' as check_spec; |
7 import 'analysis/test_all.dart' as analysis_all; | 8 import 'analysis/test_all.dart' as analysis_all; |
8 import 'analysis_server_test.dart' as analysis_server_test; | 9 import 'analysis_server_test.dart' as analysis_server_test; |
9 import 'channel/test_all.dart' as channel_test; | 10 import 'channel/test_all.dart' as channel_test; |
10 import 'completion_test.dart' as completion_test; | 11 import 'completion_test.dart' as completion_test; |
11 import 'context_manager_test.dart' as context_manager_test; | 12 import 'context_manager_test.dart' as context_manager_test; |
12 import 'domain_analysis_test.dart' as domain_analysis_test; | 13 import 'domain_analysis_test.dart' as domain_analysis_test; |
13 import 'domain_completion_test.dart' as domain_completion_test; | 14 import 'domain_completion_test.dart' as domain_completion_test; |
14 import 'domain_diagnostic_test.dart' as domain_experimental_test; | 15 import 'domain_diagnostic_test.dart' as domain_experimental_test; |
15 import 'domain_execution_test.dart' as domain_execution_test; | 16 import 'domain_execution_test.dart' as domain_execution_test; |
16 import 'domain_server_test.dart' as domain_server_test; | 17 import 'domain_server_test.dart' as domain_server_test; |
(...skipping 22 matching lines...) Expand all Loading... |
39 domain_experimental_test.main(); | 40 domain_experimental_test.main(); |
40 domain_server_test.main(); | 41 domain_server_test.main(); |
41 edit_all.main(); | 42 edit_all.main(); |
42 plugin_all.main(); | 43 plugin_all.main(); |
43 protocol_server_test.main(); | 44 protocol_server_test.main(); |
44 protocol_test.main(); | 45 protocol_test.main(); |
45 search_all.main(); | 46 search_all.main(); |
46 services_all.main(); | 47 services_all.main(); |
47 socket_server_test.main(); | 48 socket_server_test.main(); |
48 src_all.main(); | 49 src_all.main(); |
| 50 defineReflectiveSuite(() { |
| 51 defineReflectiveTests(SpecTest); |
| 52 }, name: 'spec'); |
49 }, name: 'analysis_server'); | 53 }, name: 'analysis_server'); |
50 } | 54 } |
| 55 |
| 56 @reflectiveTest |
| 57 class SpecTest { |
| 58 test_specHasBeenGenerated() { |
| 59 check_spec.main(); |
| 60 } |
| 61 } |
OLD | NEW |