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

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

Issue 472933003: Add an integration test for analysis.outline. (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/outline_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 'occurrences_test.dart' as occurrences_test;
16 import 'outline_test.dart' as outline_test;
16 import 'update_content_test.dart' as update_content_test; 17 import 'update_content_test.dart' as update_content_test;
17 import 'update_content_list_test.dart' as update_content_list_test; 18 import 'update_content_list_test.dart' as update_content_list_test;
18 19
19 /** 20 /**
20 * Utility for manually running all integration tests. 21 * Utility for manually running all integration tests.
21 */ 22 */
22 main() { 23 main() {
23 groupSep = ' | '; 24 groupSep = ' | ';
24 group('analysis', () { 25 group('analysis', () {
25 error_test.main(); 26 error_test.main();
26 get_errors_after_analysis_test.main(); 27 get_errors_after_analysis_test.main();
27 get_errors_before_analysis_test.main(); 28 get_errors_before_analysis_test.main();
28 get_hover_test.main(); 29 get_hover_test.main();
29 highlights_test.main(); 30 highlights_test.main();
30 navigation_test.main(); 31 navigation_test.main();
31 occurrences_test.main(); 32 occurrences_test.main();
33 outline_test.main();
32 update_content_test.main(); 34 update_content_test.main();
33 update_content_list_test.main(); 35 update_content_list_test.main();
34 }); 36 });
35 } 37 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/analysis/outline_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698