| Index: pkg/analyzer/test/src/task/test_all.dart
|
| diff --git a/pkg/analyzer/test/instrumentation/test_all.dart b/pkg/analyzer/test/src/task/test_all.dart
|
| similarity index 51%
|
| copy from pkg/analyzer/test/instrumentation/test_all.dart
|
| copy to pkg/analyzer/test/src/task/test_all.dart
|
| index f9bfc2d9e4c3ee027f88b851b7077d8547513e46..86c790f8d21c9ab6692c4c505c199c55f143be7f 100644
|
| --- a/pkg/analyzer/test/instrumentation/test_all.dart
|
| +++ b/pkg/analyzer/test/src/task/test_all.dart
|
| @@ -2,16 +2,22 @@
|
| // 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.instrumentation.test_all;
|
| +library test.src.task;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'instrumentation_test.dart' as instrumentation_test;
|
| +import 'inputs_test.dart' as inputs_test;
|
| +import 'manager_test.dart' as manager_test;
|
| +import 'model_test.dart' as model_test;
|
| +import 'targets_test.dart' as targets_test;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| groupSep = ' | ';
|
| - group('instrumentation', () {
|
| - instrumentation_test.main();
|
| + group('task tests', () {
|
| + inputs_test.main();
|
| + manager_test.main();
|
| + model_test.main();
|
| + targets_test.main();
|
| });
|
| }
|
|
|