| Index: pkg/analyzer/test/src/util/test_all.dart
|
| diff --git a/pkg/analyzer/test/src/test_all.dart b/pkg/analyzer/test/src/util/test_all.dart
|
| similarity index 74%
|
| copy from pkg/analyzer/test/src/test_all.dart
|
| copy to pkg/analyzer/test/src/util/test_all.dart
|
| index d29d0238600c384e48296b53f3a246ec2fad7abe..88de6e41828c7cd5ca545d7398aebaa70df23e9f 100644
|
| --- a/pkg/analyzer/test/src/test_all.dart
|
| +++ b/pkg/analyzer/test/src/util/test_all.dart
|
| @@ -2,16 +2,16 @@
|
| // 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 test.src.util;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'task/test_all.dart' as task;
|
| +import 'asserts_test.dart' as asserts_test;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| groupSep = ' | ';
|
| - group('generated tests', () {
|
| - task.main();
|
| + group('task tests', () {
|
| + asserts_test.main();
|
| });
|
| }
|
|
|