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

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

Issue 311653002: Extract analysis/notifications into a separate operation/file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweak for the test method name. Created 6 years, 7 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/operation/test_all.dart
diff --git a/pkg/analysis_server/test/operation/test_all.dart b/pkg/analysis_server/test/operation/test_all.dart
index ac6a51ceeadadf1bf57668cd88219418224e719f..4a0d39b449f5f572b9d8738d59fb2d9404c8dca4 100644
--- a/pkg/analysis_server/test/operation/test_all.dart
+++ b/pkg/analysis_server/test/operation/test_all.dart
@@ -4,8 +4,9 @@
import 'package:unittest/unittest.dart';
-import 'operation_test.dart' as operation_test;
+import 'operation_analysis_test.dart' as analysis_operation_test;
import 'operation_queue_test.dart' as operation_queue_test;
+import 'operation_test.dart' as operation_test;
/**
* Utility for manually running all tests.
@@ -13,7 +14,8 @@ import 'operation_queue_test.dart' as operation_queue_test;
main() {
groupSep = ' | ';
group('operation', () {
- operation_test.main();
+ analysis_operation_test.main();
operation_queue_test.main();
+ operation_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698