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

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

Issue 2830863002: Initial support for getting fixes from plugins (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/analysis_server/test/src/test_all.dart
diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
index 63a5bcf65f94905b4de79e96b409a16c3876dc0e..c047cf47f272608b01efdd7c8f9ba289b1a19c3a 100644
--- a/pkg/analysis_server/test/src/test_all.dart
+++ b/pkg/analysis_server/test/src/test_all.dart
@@ -2,10 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library test.src;
-
import 'package:test_reflective_loader/test_reflective_loader.dart';
+import 'domain_abstract_test.dart' as domain_abstract_test;
import 'plugin/test_all.dart' as plugin_all;
import 'utilities/test_all.dart' as utilities_all;
@@ -14,7 +13,8 @@ import 'utilities/test_all.dart' as utilities_all;
*/
main() {
defineReflectiveSuite(() {
+ domain_abstract_test.main();
plugin_all.main();
utilities_all.main();
- }, name: 'analysis_server');
+ }, name: 'src');
}

Powered by Google App Engine
This is Rietveld 408576698