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

Unified Diff: pkg/analysis_server/test/analysis/test_all.dart

Issue 563373003: Churn only: move analysis notification tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/analysis/test_all.dart
diff --git a/pkg/analysis_server/test/analysis/test_all.dart b/pkg/analysis_server/test/analysis/test_all.dart
index 5029a519310426ef21cb9efe3034c8a93f4333af..83d013d40e683cfe9927eb890f3e13bd2e63ee04 100644
--- a/pkg/analysis_server/test/analysis/test_all.dart
+++ b/pkg/analysis_server/test/analysis/test_all.dart
@@ -6,7 +6,13 @@ library test.analysis;
import 'package:unittest/unittest.dart';
import 'get_errors_test.dart' as get_errors_test;
+import 'get_hover_test.dart' as get_hover_test;
import 'notification_errors_test.dart' as notification_errors_test;
+import 'notification_highlights_test.dart' as notification_highlights_test;
+import 'notification_navigation_test.dart' as notification_navigation_test;
+import 'notification_occurrences_test.dart' as notification_occurrences_test;
+import 'notification_outline_test.dart' as notification_outline_test;
+import 'notification_overrides_test.dart' as notification_overrides_test;
/**
* Utility for manually running all tests.
@@ -15,6 +21,12 @@ main() {
groupSep = ' | ';
group('search', () {
get_errors_test.main();
+ get_hover_test.main();
notification_errors_test.main();
+ notification_highlights_test.main();
+ notification_navigation_test.main();
+ notification_occurrences_test.main();
+ notification_outline_test.main();
+ notification_overrides_test.main();
});
}
« no previous file with comments | « pkg/analysis_server/test/analysis/reanalyze_test.dart ('k') | pkg/analysis_server/test/analysis_hover_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698