Chromium Code Reviews| Index: pkg/analyzer/test/dart/element/test_all.dart |
| diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analyzer/test/dart/element/test_all.dart |
| similarity index 60% |
| copy from pkg/analysis_server/test/src/test_all.dart |
| copy to pkg/analyzer/test/dart/element/test_all.dart |
| index a3642f602779ee58d89cfe5046fff722148e4c10..392c06a2508df5bb2161627612ee0af9a718526d 100644 |
| --- a/pkg/analysis_server/test/src/test_all.dart |
| +++ b/pkg/analyzer/test/dart/element/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.src; |
| +library analyzer.test.generated.test_all; |
| import 'package:unittest/unittest.dart'; |
| -import '../utils.dart'; |
| -import 'utilities/test_all.dart' as utilities_all; |
| +import '../../utils.dart'; |
| +import 'element_test.dart' as element; |
| -/** |
| - * Utility for manually running all tests. |
| - */ |
| +/// Utility for manually running all tests. |
| main() { |
| initializeTestEnvironment(); |
| - group('analysis_server', () { |
| - utilities_all.main(); |
| + group('generated tests', () { |
|
scheglov
2015/12/16 15:00:06
Not actually "generated" anymore :)
|
| + element.main(); |
| }); |
| } |