| Index: pkg/analyzer_plugin/test/src/utilities/visitors/test_all.dart
|
| diff --git a/pkg/analyzer_plugin/test/src/utilities/test_all.dart b/pkg/analyzer_plugin/test/src/utilities/visitors/test_all.dart
|
| similarity index 54%
|
| copy from pkg/analyzer_plugin/test/src/utilities/test_all.dart
|
| copy to pkg/analyzer_plugin/test/src/utilities/visitors/test_all.dart
|
| index 70f35ca6bf536aa96bbccd1443a43c90f54d630b..e0b36d372ce017f3f4b5a4cf6cc6bcf764852cf6 100644
|
| --- a/pkg/analyzer_plugin/test/src/utilities/test_all.dart
|
| +++ b/pkg/analyzer_plugin/test/src/utilities/visitors/test_all.dart
|
| @@ -4,14 +4,11 @@
|
|
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
| -import 'change_builder/test_all.dart' as change_builder;
|
| -import 'navigation_test.dart' as navigation_test;
|
| -import 'string_utilities_test.dart' as string_utilities;
|
| +import 'local_declaration_visitor_test.dart' as local_declaration_visitor_test;
|
|
|
| +/// Utility for manually running all tests.
|
| main() {
|
| defineReflectiveSuite(() {
|
| - change_builder.main();
|
| - navigation_test.main();
|
| - string_utilities.main();
|
| - }, name: 'utilities');
|
| + local_declaration_visitor_test.main();
|
| + });
|
| }
|
|
|