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

Unified Diff: pkg/analysis_server/test/services/completion/test_all.dart

Issue 2968233002: Add code to run more tests from test_all (Closed)
Patch Set: Created 3 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_server/test/services/completion/test_all.dart
diff --git a/pkg/analysis_server/test/services/completion/test_all.dart b/pkg/analysis_server/test/services/completion/test_all.dart
index a59287d8e92b4b8b63ea602e23bdcfa4feff7732..e89a4e8bd5af29554195d35bce9be550e937f34e 100644
--- a/pkg/analysis_server/test/services/completion/test_all.dart
+++ b/pkg/analysis_server/test/services/completion/test_all.dart
@@ -4,13 +4,14 @@
import 'package:test_reflective_loader/test_reflective_loader.dart';
-import 'dart/test_all.dart' as dart_contributor_tests;
-import 'statement/statement_completion_test.dart' as statement_completion_test;
+import 'dart/test_all.dart' as dart_all;
+import 'postfix/test_all.dart' as postfix_all;
+import 'statement/test_all.dart' as statement_all;
-/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
- dart_contributor_tests.main();
- statement_completion_test.main();
+ dart_all.main();
+ postfix_all.main();
+ statement_all.main();
}, name: 'completion');
}

Powered by Google App Engine
This is Rietveld 408576698