| Index: packages/analyzer/test/src/test_all.dart
|
| diff --git a/packages/analyzer/test/src/test_all.dart b/packages/analyzer/test/src/test_all.dart
|
| index f9ad08af9e6454da81645f74a10e1e5b0d2366e0..94cbace14dffc686e58d94b49614a6436ae6a77c 100644
|
| --- a/packages/analyzer/test/src/test_all.dart
|
| +++ b/packages/analyzer/test/src/test_all.dart
|
| @@ -2,13 +2,16 @@
|
| // 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.test_all;
|
| +library analyzer.test.src.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| import '../utils.dart';
|
| import 'context/test_all.dart' as context;
|
| +import 'dart/test_all.dart' as dart;
|
| import 'plugin/plugin_config_test.dart' as plugin;
|
| +import 'source/test_all.dart' as source;
|
| +import 'summary/test_all.dart' as summary;
|
| import 'task/test_all.dart' as task;
|
| import 'util/test_all.dart' as util;
|
|
|
| @@ -17,7 +20,10 @@ main() {
|
| initializeTestEnvironment();
|
| group('src tests', () {
|
| context.main();
|
| + dart.main();
|
| plugin.main();
|
| + source.main();
|
| + summary.main();
|
| task.main();
|
| util.main();
|
| });
|
|
|