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

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

Issue 2676593006: Initial support for managing partial results from plugins (Closed)
Patch Set: Created 3 years, 10 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/plugin/test_all.dart
diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analysis_server/test/src/plugin/test_all.dart
similarity index 52%
copy from pkg/analysis_server/test/src/test_all.dart
copy to pkg/analysis_server/test/src/plugin/test_all.dart
index e7df8d3e65615fc8929f273a774d5f52e9f60c38..c179a26af80e759ba91a786dcb88bb9b303d1bac 100644
--- a/pkg/analysis_server/test/src/test_all.dart
+++ b/pkg/analysis_server/test/src/plugin/test_all.dart
@@ -1,18 +1,13 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// 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 'utilities/test_all.dart' as utilities_all;
+import 'result_collector_test.dart' as result_collector_test;
-/**
- * Utility for manually running all tests.
- */
main() {
defineReflectiveSuite(() {
- utilities_all.main();
- }, name: 'analysis_server');
+ result_collector_test.main();
+ });
}

Powered by Google App Engine
This is Rietveld 408576698