| Index: pkg/analyzer/test/dart/test_all.dart
|
| diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analyzer/test/dart/test_all.dart
|
| similarity index 64%
|
| copy from pkg/analysis_server/test/src/test_all.dart
|
| copy to pkg/analyzer/test/dart/test_all.dart
|
| index a3642f602779ee58d89cfe5046fff722148e4c10..2eb6c0ed0d97d4a30ada004636ffafa4fa49a5de 100644
|
| --- a/pkg/analysis_server/test/src/test_all.dart
|
| +++ b/pkg/analyzer/test/dart/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 'element/test_all.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();
|
| });
|
| }
|
|
|