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:unittest/unittest.dart'; | 5 import 'package:unittest/unittest.dart'; |
6 | 6 |
7 import 'analysis/test_all.dart' as analysis_all; | 7 import 'analysis/test_all.dart' as analysis_all; |
8 import 'analysis_server_test.dart' as analysis_server_test; | 8 import 'analysis_server_test.dart' as analysis_server_test; |
9 import 'channel/test_all.dart' as channel_test; | 9 import 'channel/test_all.dart' as channel_test; |
10 import 'context_manager_test.dart' as context_manager_test; | 10 import 'context_manager_test.dart' as context_manager_test; |
11 import 'domain_analysis_test.dart' as domain_analysis_test; | 11 import 'domain_analysis_test.dart' as domain_analysis_test; |
12 import 'domain_completion_test.dart' as domain_completion_test; | 12 import 'domain_completion_test.dart' as domain_completion_test; |
13 import 'domain_execution_test.dart' as domain_execution_test; | 13 import 'domain_execution_test.dart' as domain_execution_test; |
14 import 'domain_server_test.dart' as domain_server_test; | 14 import 'domain_server_test.dart' as domain_server_test; |
15 import 'edit/test_all.dart' as edit_all; | 15 import 'edit/test_all.dart' as edit_all; |
16 import 'operation/test_all.dart' as operation_test_all; | 16 import 'operation/test_all.dart' as operation_test_all; |
17 import 'protocol_server_test.dart' as protocol_server_test; | 17 import 'protocol_server_test.dart' as protocol_server_test; |
18 import 'protocol_test.dart' as protocol_test; | 18 import 'protocol_test.dart' as protocol_test; |
19 import 'search/test_all.dart' as search_all; | 19 import 'search/test_all.dart' as search_all; |
20 import 'services/test_all.dart' as services_all; | 20 import 'services/test_all.dart' as services_all; |
21 import 'socket_server_test.dart' as socket_server_test; | 21 import 'socket_server_test.dart' as socket_server_test; |
22 import 'source/test_all.dart' as source_all; | 22 import 'source/test_all.dart' as source_all; |
| 23 import 'src/test_all.dart' as src_all; |
23 | 24 |
24 /** | 25 /** |
25 * Utility for manually running all tests. | 26 * Utility for manually running all tests. |
26 */ | 27 */ |
27 main() { | 28 main() { |
28 groupSep = ' | '; | 29 groupSep = ' | '; |
29 group('analysis_server', () { | 30 group('analysis_server', () { |
30 analysis_all.main(); | 31 analysis_all.main(); |
31 analysis_server_test.main(); | 32 analysis_server_test.main(); |
32 channel_test.main(); | 33 channel_test.main(); |
33 context_manager_test.main(); | 34 context_manager_test.main(); |
34 domain_analysis_test.main(); | 35 domain_analysis_test.main(); |
35 domain_completion_test.main(); | 36 domain_completion_test.main(); |
36 domain_execution_test.main(); | 37 domain_execution_test.main(); |
37 domain_server_test.main(); | 38 domain_server_test.main(); |
38 edit_all.main(); | 39 edit_all.main(); |
39 operation_test_all.main(); | 40 operation_test_all.main(); |
40 protocol_server_test.main(); | 41 protocol_server_test.main(); |
41 protocol_test.main(); | 42 protocol_test.main(); |
42 search_all.main(); | 43 search_all.main(); |
43 services_all.main(); | 44 services_all.main(); |
44 socket_server_test.main(); | 45 socket_server_test.main(); |
45 source_all.main(); | 46 source_all.main(); |
| 47 src_all.main(); |
46 }); | 48 }); |
47 } | 49 } |
OLD | NEW |