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

Unified Diff: pkg/analyzer/test/src/command_line/test_all.dart

Issue 2441053003: Intial support for unifying command-line handling (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « pkg/analyzer/test/src/command_line/arguments_test.dart ('k') | pkg/analyzer/test/src/test_all.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/command_line/test_all.dart
diff --git a/pkg/analyzer/test/instrumentation/test_all.dart b/pkg/analyzer/test/src/command_line/test_all.dart
similarity index 60%
copy from pkg/analyzer/test/instrumentation/test_all.dart
copy to pkg/analyzer/test/src/command_line/test_all.dart
index 8ef3a566c172b3ed039fc0c1bdb44c565797feee..c3239f9c3730373fbc5e06486c49a3052c927666 100644
--- a/pkg/analyzer/test/instrumentation/test_all.dart
+++ b/pkg/analyzer/test/src/command_line/test_all.dart
@@ -2,15 +2,14 @@
// 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 analyzer.test.instrumentation.test_all;
+library analyzer.test.src.command_line.test_all;
import 'package:test_reflective_loader/test_reflective_loader.dart';
-import 'instrumentation_test.dart' as instrumentation_test;
+import 'arguments_test.dart' as arguments_test;
-/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
- instrumentation_test.main();
- }, name: 'instrumentation');
+ arguments_test.main();
+ }, name: 'command_line');
}
« no previous file with comments | « pkg/analyzer/test/src/command_line/arguments_test.dart ('k') | pkg/analyzer/test/src/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698