| Index: pkg/analyzer/test/src/dart/element/test_all.dart
|
| diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analyzer/test/src/dart/element/test_all.dart
|
| similarity index 59%
|
| copy from pkg/analysis_server/test/src/test_all.dart
|
| copy to pkg/analyzer/test/src/dart/element/test_all.dart
|
| index a3642f602779ee58d89cfe5046fff722148e4c10..a8a23be4523b93cc4cb58fbeb7b7b83163b3efc7 100644
|
| --- a/pkg/analysis_server/test/src/test_all.dart
|
| +++ b/pkg/analyzer/test/src/dart/element/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 test.src;
|
| +library analyzer.test.generated.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import '../utils.dart';
|
| -import 'utilities/test_all.dart' as utilities_all;
|
| +import '../../../utils.dart';
|
| +import 'element_test.dart' as element;
|
|
|
| -/**
|
| - * Utility for manually running all tests.
|
| - */
|
| +/// Utility for manually running all tests.
|
| main() {
|
| initializeTestEnvironment();
|
| - group('analysis_server', () {
|
| - utilities_all.main();
|
| + group('generated tests', () {
|
| + element.main();
|
| });
|
| }
|
|
|