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

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

Issue 472613002: Update analysis server and integration tests to match new ChangeContentOverlay. (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
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 'update_content_test.dart' as update_content_test; 14 import 'update_content_test.dart' as update_content_test;
15 import 'update_content_list_test.dart' as update_content_list_test;
15 16
16 /** 17 /**
17 * Utility for manually running all integration tests. 18 * Utility for manually running all integration tests.
18 */ 19 */
19 main() { 20 main() {
20 groupSep = ' | '; 21 groupSep = ' | ';
21 group('analysis', () { 22 group('analysis', () {
22 error_test.main(); 23 error_test.main();
23 get_errors_after_analysis_test.main(); 24 get_errors_after_analysis_test.main();
24 get_errors_before_analysis_test.main(); 25 get_errors_before_analysis_test.main();
25 get_hover_test.main(); 26 get_hover_test.main();
26 highlights_test.main(); 27 highlights_test.main();
27 update_content_test.main(); 28 update_content_test.main();
29 update_content_list_test.main();
28 }); 30 });
29 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698