| Index: pkg/analyzer/test/source/test_all.dart
|
| diff --git a/pkg/analysis_services/test/test_all.dart b/pkg/analyzer/test/source/test_all.dart
|
| similarity index 61%
|
| copy from pkg/analysis_services/test/test_all.dart
|
| copy to pkg/analyzer/test/source/test_all.dart
|
| index 23de4a61088814c1cb509899ef767725872580c3..b9a145f5554f7830ea1ed46a20f45da446439a7a 100644
|
| --- a/pkg/analysis_services/test/test_all.dart
|
| +++ b/pkg/analyzer/test/source/test_all.dart
|
| @@ -2,16 +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.source;
|
| +
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'correction/test_all.dart' as correction_all;
|
| -import 'index/test_all.dart' as index_all;
|
| -import 'search/test_all.dart' as search_all;
|
| +import 'package_map_resolver_test.dart' as package_map_resolver_test;
|
| +
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| groupSep = ' | ';
|
| - correction_all.main();
|
| - index_all.main();
|
| - search_all.main();
|
| -}
|
| + group('source', () {
|
| + package_map_resolver_test.main();
|
| + });
|
| +}
|
|
|