| Index: pkg/analyzer/test/instrumentation/test_all.dart
|
| diff --git a/pkg/analyzer/test/task/test_all.dart b/pkg/analyzer/test/instrumentation/test_all.dart
|
| similarity index 54%
|
| copy from pkg/analyzer/test/task/test_all.dart
|
| copy to pkg/analyzer/test/instrumentation/test_all.dart
|
| index 9ecd16215ffb783037abdb763a392bfa04311251..f9bfc2d9e4c3ee027f88b851b7077d8547513e46 100644
|
| --- a/pkg/analyzer/test/task/test_all.dart
|
| +++ b/pkg/analyzer/test/instrumentation/test_all.dart
|
| @@ -1,17 +1,17 @@
|
| -// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
| // 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.task;
|
| +library test.instrumentation.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'task_dart_test.dart' as task_dart_test;
|
| +import 'instrumentation_test.dart' as instrumentation_test;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| groupSep = ' | ';
|
| - group('generated tests', () {
|
| - task_dart_test.main();
|
| + group('instrumentation', () {
|
| + instrumentation_test.main();
|
| });
|
| }
|
|
|