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'); |
} |