| Index: pkg/analyzer/test/context/test_all.dart
|
| diff --git a/pkg/analyzer/test/dart/test_all.dart b/pkg/analyzer/test/context/test_all.dart
|
| similarity index 67%
|
| copy from pkg/analyzer/test/dart/test_all.dart
|
| copy to pkg/analyzer/test/context/test_all.dart
|
| index df7ff550d71d877ed0326fc30ca2df1e8f77cbf1..b5387ba6b523f5a201e9fbd564fb549e0a059e2f 100644
|
| --- a/pkg/analyzer/test/dart/test_all.dart
|
| +++ b/pkg/analyzer/test/context/test_all.dart
|
| @@ -2,19 +2,17 @@
|
| // 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.generated.test_all;
|
| +library analyzer.test.context.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| import '../utils.dart';
|
| -import 'ast/test_all.dart' as ast;
|
| -import 'element/test_all.dart' as element;
|
| +import 'declared_variables_test.dart' as declared_variables;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| initializeTestEnvironment();
|
| - group('dart tests', () {
|
| - ast.main();
|
| - element.main();
|
| + group('context tests', () {
|
| + declared_variables.main();
|
| });
|
| }
|
|
|