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

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

Issue 475903002: Add an integration test for analysis.occurrences. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « pkg/analysis_server/test/integration/analysis/occurrences_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.analysis.all; 5 library test.integration.analysis.all;
6 6
7 import 'package:unittest/unittest.dart'; 7 import 'package:unittest/unittest.dart';
8 8
9 import 'error_test.dart' as error_test; 9 import 'error_test.dart' as error_test;
10 import 'get_errors_after_analysis_test.dart' as get_errors_after_analysis_test; 10 import 'get_errors_after_analysis_test.dart' as get_errors_after_analysis_test;
11 import 'get_errors_before_analysis_test.dart' as get_errors_before_analysis_test ; 11 import 'get_errors_before_analysis_test.dart' as get_errors_before_analysis_test ;
12 import 'get_hover_test.dart' as get_hover_test; 12 import 'get_hover_test.dart' as get_hover_test;
13 import 'highlights_test.dart' as highlights_test; 13 import 'highlights_test.dart' as highlights_test;
14 import 'navigation_test.dart' as navigation_test; 14 import 'navigation_test.dart' as navigation_test;
15 import 'occurrences_test.dart' as occurrences_test;
15 import 'update_content_test.dart' as update_content_test; 16 import 'update_content_test.dart' as update_content_test;
16 import 'update_content_list_test.dart' as update_content_list_test; 17 import 'update_content_list_test.dart' as update_content_list_test;
17 18
18 /** 19 /**
19 * Utility for manually running all integration tests. 20 * Utility for manually running all integration tests.
20 */ 21 */
21 main() { 22 main() {
22 groupSep = ' | '; 23 groupSep = ' | ';
23 group('analysis', () { 24 group('analysis', () {
24 error_test.main(); 25 error_test.main();
25 get_errors_after_analysis_test.main(); 26 get_errors_after_analysis_test.main();
26 get_errors_before_analysis_test.main(); 27 get_errors_before_analysis_test.main();
27 get_hover_test.main(); 28 get_hover_test.main();
28 highlights_test.main(); 29 highlights_test.main();
29 navigation_test.main(); 30 navigation_test.main();
31 occurrences_test.main();
30 update_content_test.main(); 32 update_content_test.main();
31 update_content_list_test.main(); 33 update_content_list_test.main();
32 }); 34 });
33 } 35 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/analysis/occurrences_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698