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

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

Issue 365193004: Move Index and IndexStore implementations into Engine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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_hover_test.dart' as analysis_hover_test; 7 import 'analysis_hover_test.dart' as analysis_hover_test;
8 import 'analysis_notification_highlights_test.dart' as analysis_notification_hig hlights_test; 8 import 'analysis_notification_highlights_test.dart' as analysis_notification_hig hlights_test;
9 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav igation_test; 9 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav igation_test;
10 import 'analysis_notification_occurrences_test.dart' as analysis_notification_oc currences_test; 10 import 'analysis_notification_occurrences_test.dart' as analysis_notification_oc currences_test;
11 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin e_test; 11 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin e_test;
12 import 'analysis_notification_overrides_test.dart' as analysis_notification_over rides_test; 12 import 'analysis_notification_overrides_test.dart' as analysis_notification_over rides_test;
13 import 'analysis_server_test.dart' as analysis_server_test; 13 import 'analysis_server_test.dart' as analysis_server_test;
14 import 'channel_test.dart' as channel_test; 14 import 'channel_test.dart' as channel_test;
15 import 'computer/test_all.dart' as computer_test_all; 15 import 'computer/test_all.dart' as computer_test_all;
16 import 'context_directory_manager_test.dart' as context_directory_manager_test; 16 import 'context_directory_manager_test.dart' as context_directory_manager_test;
17 import 'domain_analysis_test.dart' as domain_analysis_test; 17 import 'domain_analysis_test.dart' as domain_analysis_test;
18 import 'domain_completion_test.dart' as domain_completion_test; 18 import 'domain_completion_test.dart' as domain_completion_test;
19 import 'domain_edit_test.dart' as domain_edit_test; 19 import 'domain_edit_test.dart' as domain_edit_test;
20 import 'domain_search_test.dart' as domain_search_test; 20 import 'domain_search_test.dart' as domain_search_test;
21 import 'domain_server_test.dart' as domain_server_test; 21 import 'domain_server_test.dart' as domain_server_test;
22 import 'index/test_all.dart' as index_test_all;
23 import 'operation/test_all.dart' as operation_test_all; 22 import 'operation/test_all.dart' as operation_test_all;
24 import 'package_map_provider_test.dart' as package_map_provider_test; 23 import 'package_map_provider_test.dart' as package_map_provider_test;
25 import 'package_uri_resolver_test.dart' as package_uri_resolver_test; 24 import 'package_uri_resolver_test.dart' as package_uri_resolver_test;
26 import 'protocol_test.dart' as protocol_test; 25 import 'protocol_test.dart' as protocol_test;
27 import 'resource_test.dart' as resource_test; 26 import 'resource_test.dart' as resource_test;
28 import 'socket_server_test.dart' as socket_server_test; 27 import 'socket_server_test.dart' as socket_server_test;
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 groupSep = ' | '; 33 groupSep = ' | ';
35 group('analysis_server', () { 34 group('analysis_server', () {
36 analysis_hover_test.main(); 35 analysis_hover_test.main();
37 analysis_notification_highlights_test.main(); 36 analysis_notification_highlights_test.main();
38 analysis_notification_navigation_test.main(); 37 analysis_notification_navigation_test.main();
39 analysis_notification_occurrences_test.main(); 38 analysis_notification_occurrences_test.main();
40 analysis_notification_outline_test.main(); 39 analysis_notification_outline_test.main();
41 analysis_notification_overrides_test.main(); 40 analysis_notification_overrides_test.main();
42 analysis_server_test.main(); 41 analysis_server_test.main();
43 channel_test.main(); 42 channel_test.main();
44 computer_test_all.main(); 43 computer_test_all.main();
45 context_directory_manager_test.main(); 44 context_directory_manager_test.main();
46 domain_analysis_test.main(); 45 domain_analysis_test.main();
47 domain_completion_test.main(); 46 domain_completion_test.main();
48 domain_edit_test.main(); 47 domain_edit_test.main();
49 domain_search_test.main(); 48 domain_search_test.main();
50 domain_server_test.main(); 49 domain_server_test.main();
51 index_test_all.main();
52 operation_test_all.main(); 50 operation_test_all.main();
53 package_map_provider_test.main(); 51 package_map_provider_test.main();
54 package_uri_resolver_test.main(); 52 package_uri_resolver_test.main();
55 protocol_test.main(); 53 protocol_test.main();
56 resource_test.main(); 54 resource_test.main();
57 socket_server_test.main(); 55 socket_server_test.main();
58 }); 56 });
59 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698