| Index: pkg/analysis_server/test/integration/completion/test_all.dart
|
| diff --git a/pkg/analysis_server/test/edit/test_all.dart b/pkg/analysis_server/test/integration/completion/test_all.dart
|
| similarity index 57%
|
| copy from pkg/analysis_server/test/edit/test_all.dart
|
| copy to pkg/analysis_server/test/integration/completion/test_all.dart
|
| index 7c513b6d9788419cee1f719e51beda50997494e4..dc3e046e454e17060a8bf44b3643d3d31bf1f268 100644
|
| --- a/pkg/analysis_server/test/edit/test_all.dart
|
| +++ b/pkg/analysis_server/test/integration/completion/test_all.dart
|
| @@ -2,20 +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.edit.all;
|
| +library test.integration.completion.all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| -import 'edit_domain_test.dart' as domain_edit_test;
|
| -import 'fix_test.dart' as fix_test;
|
| +import 'get_suggestions_test.dart' as get_suggestions_test;
|
|
|
| /**
|
| - * Utility for manually running all tests.
|
| + * Utility for manually running all integration tests.
|
| */
|
| main() {
|
| groupSep = ' | ';
|
| - group('edit', () {
|
| - domain_edit_test.main();
|
| - fix_test.main();
|
| + group('completion', () {
|
| + get_suggestions_test.main();
|
| });
|
| -}
|
| +}
|
|
|