| Index: packages/analyzer/test/src/task/test_all.dart
|
| diff --git a/packages/analyzer/test/src/task/test_all.dart b/packages/analyzer/test/src/task/test_all.dart
|
| index 62fe20f5c0bd60ce47e40089ee8b139b0b055867..22108ff20fbf3b75de117b617557a34a82a1812c 100644
|
| --- a/packages/analyzer/test/src/task/test_all.dart
|
| +++ b/packages/analyzer/test/src/task/test_all.dart
|
| @@ -2,7 +2,7 @@
|
| // 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.task.test_all;
|
| +library analyzer.test.src.task.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| @@ -18,7 +18,11 @@ import 'incremental_element_builder_test.dart'
|
| import 'inputs_test.dart' as inputs_test;
|
| import 'manager_test.dart' as manager_test;
|
| import 'model_test.dart' as model_test;
|
| +import 'options_test.dart' as options_test;
|
| +import 'options_work_manager_test.dart' as options_work_manager_test;
|
| +import 'strong/test_all.dart' as strong_mode_test_all;
|
| import 'strong_mode_test.dart' as strong_mode_test;
|
| +import 'yaml_test.dart' as yaml_test;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| @@ -34,6 +38,10 @@ main() {
|
| inputs_test.main();
|
| manager_test.main();
|
| model_test.main();
|
| + options_test.main();
|
| + options_work_manager_test.main();
|
| + strong_mode_test_all.main();
|
| strong_mode_test.main();
|
| + yaml_test.main();
|
| });
|
| }
|
|
|