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

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

Issue 1232393005: Add notification of analyzed files (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 'get_errors_test.dart' as get_errors_test; 8 import 'get_errors_test.dart' as get_errors_test;
9 import 'get_hover_test.dart' as get_hover_test; 9 import 'get_hover_test.dart' as get_hover_test;
10 import 'get_navigation_test.dart' as get_navigation_test; 10 import 'get_navigation_test.dart' as get_navigation_test;
11 import 'notification_analyzedFiles_test.dart'
Paul Berry 2015/07/13 21:51:13 Did you forget to add this file? I don't see it.
Brian Wilkerson 2015/07/13 22:05:03 Yes, done.
12 as notification_analyzedFiles_test;
11 import 'notification_errors_test.dart' as notification_errors_test; 13 import 'notification_errors_test.dart' as notification_errors_test;
12 import 'notification_highlights_test.dart' as notification_highlights_test; 14 import 'notification_highlights_test.dart' as notification_highlights_test;
13 import 'notification_navigation_test.dart' as notification_navigation_test; 15 import 'notification_navigation_test.dart' as notification_navigation_test;
14 import 'notification_occurrences_test.dart' as notification_occurrences_test; 16 import 'notification_occurrences_test.dart' as notification_occurrences_test;
15 import 'notification_outline_test.dart' as notification_outline_test; 17 import 'notification_outline_test.dart' as notification_outline_test;
16 import 'notification_overrides_test.dart' as notification_overrides_test; 18 import 'notification_overrides_test.dart' as notification_overrides_test;
17 import 'update_content_test.dart' as update_content_test; 19 import 'update_content_test.dart' as update_content_test;
18 20
19 /** 21 /**
20 * Utility for manually running all tests. 22 * Utility for manually running all tests.
21 */ 23 */
22 main() { 24 main() {
23 groupSep = ' | '; 25 groupSep = ' | ';
24 group('search', () { 26 group('search', () {
25 get_errors_test.main(); 27 get_errors_test.main();
26 get_hover_test.main(); 28 get_hover_test.main();
27 get_navigation_test.main(); 29 get_navigation_test.main();
30 notification_analyzedFiles_test.main();
28 notification_errors_test.main(); 31 notification_errors_test.main();
29 notification_highlights_test.main(); 32 notification_highlights_test.main();
30 notification_navigation_test.main(); 33 notification_navigation_test.main();
31 notification_occurrences_test.main(); 34 notification_occurrences_test.main();
32 notification_outline_test.main(); 35 notification_outline_test.main();
33 notification_overrides_test.main(); 36 notification_overrides_test.main();
34 update_content_test.main(); 37 update_content_test.main();
35 }); 38 });
36 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698