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

Unified Diff: pkg/analysis_services/test/completion/test_all.dart

Issue 428313002: refactor code completion to allow for multiple suggestion computers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 6 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_services/test/completion/test_all.dart
diff --git a/pkg/analysis_services/test/completion/test_all.dart b/pkg/analysis_services/test/completion/test_all.dart
index c05b3b61b2f6468a344214a5065d28af6a86a873..32a042869b382285c8fe355e94069f9ffce6ee69 100644
--- a/pkg/analysis_services/test/completion/test_all.dart
+++ b/pkg/analysis_services/test/completion/test_all.dart
@@ -6,12 +6,14 @@ library test.services.completion;
import 'package:unittest/unittest.dart';
-import 'top_level_computer_test.dart' as toplevel_test;
+import 'completion_computer_test.dart' as completion_test;
+import 'top_level_computer_test.dart' as topLevel_test;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
group('completion', () {
- toplevel_test.main();
+ completion_test.main();
+ topLevel_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698