| Index: pkg/analysis_server/test/src/test_all.dart
|
| diff --git a/pkg/analyzer/test/task/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
|
| similarity index 62%
|
| copy from pkg/analyzer/test/task/test_all.dart
|
| copy to pkg/analysis_server/test/src/test_all.dart
|
| index 9ecd16215ffb783037abdb763a392bfa04311251..d5f5729cdc0b544389bd6c7f85a5062c1645c373 100644
|
| --- a/pkg/analyzer/test/task/test_all.dart
|
| +++ b/pkg/analysis_server/test/src/test_all.dart
|
| @@ -2,16 +2,18 @@
|
| // 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.src;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'task_dart_test.dart' as task_dart_test;
|
| +import 'utilities/test_all.dart' as utilities_all;
|
|
|
| -/// Utility for manually running all tests.
|
| +/**
|
| + * Utility for manually running all tests.
|
| + */
|
| main() {
|
| groupSep = ' | ';
|
| - group('generated tests', () {
|
| - task_dart_test.main();
|
| + group('analysis_server', () {
|
| + utilities_all.main();
|
| });
|
| }
|
|
|