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

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

Issue 1453433002: Move diagnostics to `diagnostics` domain (#24931). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: master merge Created 5 years, 1 month 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_diagnostic_test.dart' as domain_experimental_test;
13 import 'domain_execution_test.dart' as domain_execution_test; 14 import 'domain_execution_test.dart' as domain_execution_test;
14 import 'domain_experimental_test.dart' as domain_experimental_test;
15 import 'domain_server_test.dart' as domain_server_test; 15 import 'domain_server_test.dart' as domain_server_test;
16 import 'edit/test_all.dart' as edit_all; 16 import 'edit/test_all.dart' as edit_all;
17 import 'operation/test_all.dart' as operation_test_all; 17 import 'operation/test_all.dart' as operation_test_all;
18 import 'plugin/test_all.dart' as plugin_all; 18 import 'plugin/test_all.dart' as plugin_all;
19 import 'protocol_server_test.dart' as protocol_server_test; 19 import 'protocol_server_test.dart' as protocol_server_test;
20 import 'protocol_test.dart' as protocol_test; 20 import 'protocol_test.dart' as protocol_test;
21 import 'search/test_all.dart' as search_all; 21 import 'search/test_all.dart' as search_all;
22 import 'server_options_test.dart' as server_options; 22 import 'server_options_test.dart' as server_options;
23 import 'services/test_all.dart' as services_all; 23 import 'services/test_all.dart' as services_all;
24 import 'socket_server_test.dart' as socket_server_test; 24 import 'socket_server_test.dart' as socket_server_test;
(...skipping 22 matching lines...) Expand all
47 protocol_server_test.main(); 47 protocol_server_test.main();
48 protocol_test.main(); 48 protocol_test.main();
49 search_all.main(); 49 search_all.main();
50 server_options.main(); 50 server_options.main();
51 services_all.main(); 51 services_all.main();
52 socket_server_test.main(); 52 socket_server_test.main();
53 source_all.main(); 53 source_all.main();
54 src_all.main(); 54 src_all.main();
55 }); 55 });
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698