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

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

Issue 338683003: Extract 'DartUnitHighlightsComputer' tests into a separate file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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_notification_highlights_test.dart' as analysis_notification_hig hlights_test;
7 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav igation_test; 8 import 'analysis_notification_navigation_test.dart' as analysis_notification_nav igation_test;
8 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin e_test; 9 import 'analysis_notification_outline_test.dart' as analysis_notification_outlin e_test;
9 import 'analysis_server_test.dart' as analysis_server_test; 10 import 'analysis_server_test.dart' as analysis_server_test;
10 import 'channel_test.dart' as channel_test; 11 import 'channel_test.dart' as channel_test;
11 import 'context_directory_manager_test.dart' as context_directory_manager_test; 12 import 'context_directory_manager_test.dart' as context_directory_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_edit_test.dart' as domain_edit_test; 15 import 'domain_edit_test.dart' as domain_edit_test;
15 import 'domain_search_test.dart' as domain_search_test; 16 import 'domain_search_test.dart' as domain_search_test;
16 import 'domain_server_test.dart' as domain_server_test; 17 import 'domain_server_test.dart' as domain_server_test;
17 import 'index/test_all.dart' as index_test_all; 18 import 'index/test_all.dart' as index_test_all;
18 import 'operation/test_all.dart' as operation_test; 19 import 'operation/test_all.dart' as operation_test;
19 import 'package_uri_resolver_test.dart' as package_uri_resolver_test; 20 import 'package_uri_resolver_test.dart' as package_uri_resolver_test;
20 import 'protocol_test.dart' as protocol_test; 21 import 'protocol_test.dart' as protocol_test;
21 import 'resource_test.dart' as resource_test; 22 import 'resource_test.dart' as resource_test;
22 import 'socket_server_test.dart' as socket_server_test; 23 import 'socket_server_test.dart' as socket_server_test;
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', () {
31 analysis_notification_highlights_test.main();
30 analysis_notification_navigation_test.main(); 32 analysis_notification_navigation_test.main();
31 analysis_notification_outline_test.main(); 33 analysis_notification_outline_test.main();
32 analysis_server_test.main(); 34 analysis_server_test.main();
33 channel_test.main(); 35 channel_test.main();
34 context_directory_manager_test.main(); 36 context_directory_manager_test.main();
35 domain_analysis_test.main(); 37 domain_analysis_test.main();
36 domain_completion_test.main(); 38 domain_completion_test.main();
37 domain_edit_test.main(); 39 domain_edit_test.main();
38 domain_search_test.main(); 40 domain_search_test.main();
39 domain_server_test.main(); 41 domain_server_test.main();
40 index_test_all.main(); 42 index_test_all.main();
41 operation_test.main(); 43 operation_test.main();
42 package_uri_resolver_test.main(); 44 package_uri_resolver_test.main();
43 protocol_test.main(); 45 protocol_test.main();
44 resource_test.main(); 46 resource_test.main();
45 socket_server_test.main(); 47 socket_server_test.main();
46 }); 48 });
47 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698