| Index: pkg/analysis_server/test/services/completion/dart/test_all.dart
|
| diff --git a/pkg/analysis_server/test/integration/completion/test_all.dart b/pkg/analysis_server/test/services/completion/dart/test_all.dart
|
| similarity index 54%
|
| copy from pkg/analysis_server/test/integration/completion/test_all.dart
|
| copy to pkg/analysis_server/test/services/completion/dart/test_all.dart
|
| index aae07f3ecd621c993bf21affa45f131d1e81bca9..a4c0e61a3e73f64ed2f27bcc059dfa7a6da9c25b 100644
|
| --- a/pkg/analysis_server/test/integration/completion/test_all.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/test_all.dart
|
| @@ -2,19 +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.integration.completion.all;
|
| +library test.services.completion.dart;
|
|
|
| import 'package:unittest/unittest.dart';
|
| +import 'inherited_contributor_test.dart' as inherited_contributor_test;
|
|
|
| -import '../../utils.dart';
|
| -import 'get_suggestions_test.dart' as get_suggestions_test;
|
| +import '../../../utils.dart';
|
|
|
| -/**
|
| - * Utility for manually running all integration tests.
|
| - */
|
| +/// Utility for manually running all tests.
|
| main() {
|
| initializeTestEnvironment();
|
| - group('completion', () {
|
| - get_suggestions_test.main();
|
| + group('dart/completion', () {
|
| + inherited_contributor_test.main();
|
| });
|
| }
|
|
|