Index: pkg/analyzer/test/src/dart/analysis/test_all.dart |
diff --git a/pkg/analyzer/test/src/source/test_all.dart b/pkg/analyzer/test/src/dart/analysis/test_all.dart |
similarity index 70% |
copy from pkg/analyzer/test/src/source/test_all.dart |
copy to pkg/analyzer/test/src/dart/analysis/test_all.dart |
index 5b7a464d208f5be5d1b428913eb07dbc3069ae0a..e7488008a5c5bea457d22e50fabdcb0c397dcef7 100644 |
--- a/pkg/analyzer/test/src/source/test_all.dart |
+++ b/pkg/analyzer/test/src/dart/analysis/test_all.dart |
@@ -2,15 +2,15 @@ |
// 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.src.source.test_all; |
+library analyzer.test.src.dart.analysis.test_all; |
import 'package:test_reflective_loader/test_reflective_loader.dart'; |
-import 'source_resource_test.dart' as source_resource_test; |
+import 'driver_test.dart' as drivel; |
Brian Wilkerson
2016/10/27 05:06:04
"drivel" --> "driver"
scheglov
2016/10/27 16:24:23
Done.
|
/// Utility for manually running all tests. |
main() { |
defineReflectiveSuite(() { |
- source_resource_test.main(); |
- }, name: 'source'); |
+ drivel.main(); |
+ }, name: 'analysis'); |
} |