Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Side by Side Diff: pkg/analysis_server/test/test_all.dart

Issue 2863593004: Remove the non-driver versions of several tests (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analysis_server/test/services/search/hierarchy_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '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 'completion_test.dart' as completion_test; 10 import 'completion_test.dart' as completion_test;
11 import 'context_manager_driver_test.dart' as context_manager_driver_test;
12 import 'context_manager_test.dart' as context_manager_test; 11 import 'context_manager_test.dart' as context_manager_test;
13 import 'domain_analysis_test.dart' as domain_analysis_test; 12 import 'domain_analysis_test.dart' as domain_analysis_test;
14 import 'domain_completion_test.dart' as domain_completion_test; 13 import 'domain_completion_test.dart' as domain_completion_test;
15 import 'domain_diagnostic_test.dart' as domain_experimental_test; 14 import 'domain_diagnostic_test.dart' as domain_experimental_test;
16 import 'domain_execution_test.dart' as domain_execution_test; 15 import 'domain_execution_test.dart' as domain_execution_test;
17 import 'domain_server_test.dart' as domain_server_test; 16 import 'domain_server_test.dart' as domain_server_test;
18 import 'edit/test_all.dart' as edit_all; 17 import 'edit/test_all.dart' as edit_all;
19 import 'operation/test_all.dart' as operation_test_all; 18 import 'operation/test_all.dart' as operation_test_all;
20 import 'plugin/test_all.dart' as plugin_all; 19 import 'plugin/test_all.dart' as plugin_all;
21 import 'protocol_server_test.dart' as protocol_server_test; 20 import 'protocol_server_test.dart' as protocol_server_test;
22 import 'protocol_test.dart' as protocol_test; 21 import 'protocol_test.dart' as protocol_test;
23 import 'search/test_all.dart' as search_all; 22 import 'search/test_all.dart' as search_all;
24 import 'services/test_all.dart' as services_all; 23 import 'services/test_all.dart' as services_all;
25 import 'single_context_manager_test.dart' as single_context_manager_test; 24 import 'single_context_manager_test.dart' as single_context_manager_test;
26 import 'socket_server_test.dart' as socket_server_test; 25 import 'socket_server_test.dart' as socket_server_test;
27 import 'source/test_all.dart' as source_all; 26 import 'source/test_all.dart' as source_all;
28 import 'src/test_all.dart' as src_all; 27 import 'src/test_all.dart' as src_all;
29 28
30 /** 29 /**
31 * Utility for manually running all tests. 30 * Utility for manually running all tests.
32 */ 31 */
33 main() { 32 main() {
34 defineReflectiveSuite(() { 33 defineReflectiveSuite(() {
35 analysis_all.main(); 34 analysis_all.main();
36 analysis_server_test.main(); 35 analysis_server_test.main();
37 channel_test.main(); 36 channel_test.main();
38 completion_test.main(); 37 completion_test.main();
39 context_manager_driver_test.main();
40 context_manager_test.main(); 38 context_manager_test.main();
41 domain_analysis_test.main(); 39 domain_analysis_test.main();
42 domain_completion_test.main(); 40 domain_completion_test.main();
43 domain_execution_test.main(); 41 domain_execution_test.main();
44 domain_experimental_test.main(); 42 domain_experimental_test.main();
45 domain_server_test.main(); 43 domain_server_test.main();
46 edit_all.main(); 44 edit_all.main();
47 operation_test_all.main(); 45 operation_test_all.main();
48 plugin_all.main(); 46 plugin_all.main();
49 protocol_server_test.main(); 47 protocol_server_test.main();
50 protocol_test.main(); 48 protocol_test.main();
51 search_all.main(); 49 search_all.main();
52 services_all.main(); 50 services_all.main();
53 single_context_manager_test.main(); 51 single_context_manager_test.main();
54 socket_server_test.main(); 52 socket_server_test.main();
55 source_all.main(); 53 source_all.main();
56 src_all.main(); 54 src_all.main();
57 }, name: 'analysis_server'); 55 }, name: 'analysis_server');
58 } 56 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/services/search/hierarchy_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698