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

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

Issue 2747893004: Add analysis server integration tests for the search domain. (Closed)
Patch Set: review comments Created 3 years, 9 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
« no previous file with comments | « pkg/analysis_server/test/integration/search/find_top_level_declarations_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library test.integration.search.all; 5 library test.integration.search.all;
6 6
7 import 'package:test_reflective_loader/test_reflective_loader.dart'; 7 import 'package:test_reflective_loader/test_reflective_loader.dart';
8 8
9 import 'find_element_references_test.dart' as find_element_references_test;
10 import 'find_member_declarations_test.dart' as find_member_declarations_test;
11 import 'find_member_references_test.dart' as find_member_references_test;
12 import 'find_top_level_declarations_test.dart' as find_top_level_declarations_te st;
9 import 'get_type_hierarchy_test.dart' as get_type_hierarchy_test; 13 import 'get_type_hierarchy_test.dart' as get_type_hierarchy_test;
10 14
11 /** 15 /**
12 * Utility for manually running all integration tests. 16 * Utility for manually running all integration tests.
13 */ 17 */
14 main() { 18 main() {
15 defineReflectiveSuite(() { 19 defineReflectiveSuite(() {
20 find_element_references_test.main();
21 find_member_declarations_test.main();
22 find_member_references_test.main();
23 find_top_level_declarations_test.main();
16 get_type_hierarchy_test.main(); 24 get_type_hierarchy_test.main();
17 }, name: 'search'); 25 }, name: 'search');
18 } 26 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/search/find_top_level_declarations_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698