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

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

Issue 941883002: cache pub list results (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 10 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 | Annotate | Revision Log
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: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 'plugin/test_all.dart' as plugin_test_all; 17 import 'plugin/test_all.dart' as plugin_test_all;
18 import 'protocol_server_test.dart' as protocol_server_test; 18 import 'protocol_server_test.dart' as protocol_server_test;
19 import 'protocol_test.dart' as protocol_test; 19 import 'protocol_test.dart' as protocol_test;
20 import 'search/test_all.dart' as search_all; 20 import 'search/test_all.dart' as search_all;
21 import 'services/test_all.dart' as services_all; 21 import 'services/test_all.dart' as services_all;
22 import 'socket_server_test.dart' as socket_server_test; 22 import 'socket_server_test.dart' as socket_server_test;
23 import 'source/test_all.dart' as source_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 plugin_test_all.main(); 41 plugin_test_all.main();
41 protocol_server_test.main(); 42 protocol_server_test.main();
42 protocol_test.main(); 43 protocol_test.main();
43 search_all.main(); 44 search_all.main();
44 services_all.main(); 45 services_all.main();
45 socket_server_test.main(); 46 socket_server_test.main();
47 source_all.main();
46 }); 48 });
47 } 49 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/source/test_all.dart ('k') | pkg/analyzer/lib/file_system/memory_file_system.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698