| Index: pkg/analyzer/test/src/dart/test_all.dart
 | 
| diff --git a/pkg/analysis_server/test/integration/completion/test_all.dart b/pkg/analyzer/test/src/dart/test_all.dart
 | 
| similarity index 60%
 | 
| copy from pkg/analysis_server/test/integration/completion/test_all.dart
 | 
| copy to pkg/analyzer/test/src/dart/test_all.dart
 | 
| index aae07f3ecd621c993bf21affa45f131d1e81bca9..ae3e31c22978ceb03ca0cefdc79ab9e610c370fb 100644
 | 
| --- a/pkg/analysis_server/test/integration/completion/test_all.dart
 | 
| +++ b/pkg/analyzer/test/src/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 analyzer.test.generated.test_all;
 | 
|  
 | 
|  import 'package:unittest/unittest.dart';
 | 
|  
 | 
|  import '../../utils.dart';
 | 
| -import 'get_suggestions_test.dart' as get_suggestions_test;
 | 
| +import 'element/test_all.dart' as element;
 | 
|  
 | 
| -/**
 | 
| - * Utility for manually running all integration tests.
 | 
| - */
 | 
| +/// Utility for manually running all tests.
 | 
|  main() {
 | 
|    initializeTestEnvironment();
 | 
| -  group('completion', () {
 | 
| -    get_suggestions_test.main();
 | 
| +  group('generated tests', () {
 | 
| +    element.main();
 | 
|    });
 | 
|  }
 | 
| 
 |