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

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

Issue 1399893004: Context invalidation on option changes (Implements #24574). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Review fix. Created 5 years, 2 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
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 library test.analysis; 4 library test.analysis;
5 5
6 import 'package:unittest/unittest.dart'; 6 import 'package:unittest/unittest.dart';
7 7
8 import '../utils.dart'; 8 import '../utils.dart';
9 import 'get_errors_test.dart' as get_errors_test; 9 import 'get_errors_test.dart' as get_errors_test;
10 import 'get_hover_test.dart' as get_hover_test; 10 import 'get_hover_test.dart' as get_hover_test;
11 import 'get_navigation_test.dart' as get_navigation_test; 11 import 'get_navigation_test.dart' as get_navigation_test;
12 import 'notification_analysis_options_test.dart' as notification_analysis_option s_test;
12 import 'notification_analyzedFiles_test.dart' 13 import 'notification_analyzedFiles_test.dart'
13 as notification_analyzedFiles_test; 14 as notification_analyzedFiles_test;
14 import 'notification_errors_test.dart' as notification_errors_test; 15 import 'notification_errors_test.dart' as notification_errors_test;
15 import 'notification_highlights_test.dart' as notification_highlights_test; 16 import 'notification_highlights_test.dart' as notification_highlights_test;
16 import 'notification_highlights_test2.dart' as notification_highlights_test2; 17 import 'notification_highlights_test2.dart' as notification_highlights_test2;
17 import 'notification_implemented_test.dart' as notification_implemented_test; 18 import 'notification_implemented_test.dart' as notification_implemented_test;
18 import 'notification_navigation_test.dart' as notification_navigation_test; 19 import 'notification_navigation_test.dart' as notification_navigation_test;
19 import 'notification_occurrences_test.dart' as notification_occurrences_test; 20 import 'notification_occurrences_test.dart' as notification_occurrences_test;
20 import 'notification_outline_test.dart' as notification_outline_test; 21 import 'notification_outline_test.dart' as notification_outline_test;
21 import 'notification_overrides_test.dart' as notification_overrides_test; 22 import 'notification_overrides_test.dart' as notification_overrides_test;
22 import 'set_priority_files_test.dart' as set_priority_files_test; 23 import 'set_priority_files_test.dart' as set_priority_files_test;
23 import 'update_content_test.dart' as update_content_test; 24 import 'update_content_test.dart' as update_content_test;
24 25
25 /** 26 /**
26 * Utility for manually running all tests. 27 * Utility for manually running all tests.
27 */ 28 */
28 main() { 29 main() {
29 initializeTestEnvironment(); 30 initializeTestEnvironment();
30 group('analysis', () { 31 group('analysis', () {
31 get_errors_test.main(); 32 get_errors_test.main();
32 get_hover_test.main(); 33 get_hover_test.main();
33 get_navigation_test.main(); 34 get_navigation_test.main();
35 notification_analysis_options_test.main();
34 notification_analyzedFiles_test.main(); 36 notification_analyzedFiles_test.main();
35 notification_errors_test.main(); 37 notification_errors_test.main();
36 notification_highlights_test.main(); 38 notification_highlights_test.main();
37 notification_highlights_test2.main(); 39 notification_highlights_test2.main();
38 notification_implemented_test.main(); 40 notification_implemented_test.main();
39 notification_navigation_test.main(); 41 notification_navigation_test.main();
40 notification_occurrences_test.main(); 42 notification_occurrences_test.main();
41 notification_outline_test.main(); 43 notification_outline_test.main();
42 notification_overrides_test.main(); 44 notification_overrides_test.main();
43 set_priority_files_test.main(); 45 set_priority_files_test.main();
44 update_content_test.main(); 46 update_content_test.main();
45 }); 47 });
46 } 48 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/analysis/notification_analysis_options_test.dart ('k') | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698