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

Unified Diff: pkg/analyzer_plugin/test/plugin/test_all.dart

Issue 2857233002: Implement more of the behavior of a plugin; refactor some API (Closed)
Patch Set: Created 3 years, 8 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/analyzer_plugin/test/plugin/test_all.dart
diff --git a/pkg/analyzer_plugin/test/test_all.dart b/pkg/analyzer_plugin/test/plugin/test_all.dart
similarity index 68%
copy from pkg/analyzer_plugin/test/test_all.dart
copy to pkg/analyzer_plugin/test/plugin/test_all.dart
index 9b9fa63049383174eb3c81797c98c48d28bdf89c..c727a3612c553bfa5208ca1dd63038f3c88573a1 100644
--- a/pkg/analyzer_plugin/test/test_all.dart
+++ b/pkg/analyzer_plugin/test/plugin/test_all.dart
@@ -4,12 +4,10 @@
import 'package:test_reflective_loader/test_reflective_loader.dart';
-import 'src/test_all.dart' as src;
-import 'utilities/test_all.dart' as utilities;
+import 'plugin_test.dart' as plugin_test;
main() {
defineReflectiveSuite(() {
- src.main();
- utilities.main();
- }, name: 'analyzer_plugin');
+ plugin_test.main();
+ }, name: 'plugin');
}

Powered by Google App Engine
This is Rietveld 408576698