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

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

Issue 1303343008: Extension point for AnalysisResultListener(s). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Replace with SetAnalysisDomain() function. Created 5 years, 3 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
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_all;
17 import 'protocol_server_test.dart' as protocol_server_test; 18 import 'protocol_server_test.dart' as protocol_server_test;
18 import 'protocol_test.dart' as protocol_test; 19 import 'protocol_test.dart' as protocol_test;
19 import 'search/test_all.dart' as search_all; 20 import 'search/test_all.dart' as search_all;
20 import 'server_options_test.dart' as server_options; 21 import 'server_options_test.dart' as server_options;
21 import 'services/test_all.dart' as services_all; 22 import 'services/test_all.dart' as services_all;
22 import 'socket_server_test.dart' as socket_server_test; 23 import 'socket_server_test.dart' as socket_server_test;
23 import 'source/test_all.dart' as source_all; 24 import 'source/test_all.dart' as source_all;
24 import 'src/test_all.dart' as src_all; 25 import 'src/test_all.dart' as src_all;
25 import 'utils.dart'; 26 import 'utils.dart';
26 27
27 /** 28 /**
28 * Utility for manually running all tests. 29 * Utility for manually running all tests.
29 */ 30 */
30 main() { 31 main() {
31 initializeTestEnvironment(); 32 initializeTestEnvironment();
32 group('analysis_server', () { 33 group('analysis_server', () {
33 analysis_all.main(); 34 analysis_all.main();
34 analysis_server_test.main(); 35 analysis_server_test.main();
35 channel_test.main(); 36 channel_test.main();
36 context_manager_test.main(); 37 context_manager_test.main();
37 domain_analysis_test.main(); 38 domain_analysis_test.main();
38 domain_completion_test.main(); 39 domain_completion_test.main();
39 domain_execution_test.main(); 40 domain_execution_test.main();
40 domain_server_test.main(); 41 domain_server_test.main();
41 edit_all.main(); 42 edit_all.main();
42 operation_test_all.main(); 43 operation_test_all.main();
44 plugin_all.main();
43 protocol_server_test.main(); 45 protocol_server_test.main();
44 protocol_test.main(); 46 protocol_test.main();
45 search_all.main(); 47 search_all.main();
46 server_options.main(); 48 server_options.main();
47 services_all.main(); 49 services_all.main();
48 socket_server_test.main(); 50 socket_server_test.main();
49 source_all.main(); 51 source_all.main();
50 src_all.main(); 52 src_all.main();
51 }); 53 });
52 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698