| Index: pkg/analyzer/test/src/dart/constant/test_all.dart
|
| diff --git a/pkg/analyzer/test/src/dart/ast/test_all.dart b/pkg/analyzer/test/src/dart/constant/test_all.dart
|
| similarity index 68%
|
| copy from pkg/analyzer/test/src/dart/ast/test_all.dart
|
| copy to pkg/analyzer/test/src/dart/constant/test_all.dart
|
| index f0648c442345fdb07da8a7d49256c6f89f718881..a6eb5b6786347aba3599bfdbef80379243835835 100644
|
| --- a/pkg/analyzer/test/src/dart/ast/test_all.dart
|
| +++ b/pkg/analyzer/test/src/dart/constant/test_all.dart
|
| @@ -2,17 +2,21 @@
|
| // 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 analyzer.test.src.dart.ast.test_all;
|
| +library analyzer.test.src.dart.constant.test_all;
|
|
|
| import 'package:unittest/unittest.dart';
|
|
|
| import '../../../utils.dart';
|
| +import 'evaluation_test.dart' as evaluation;
|
| import 'utilities_test.dart' as utilities;
|
| +import 'value_test.dart' as value;
|
|
|
| /// Utility for manually running all tests.
|
| main() {
|
| initializeTestEnvironment();
|
| - group('ast tests', () {
|
| + group('constant tests', () {
|
| + evaluation.main();
|
| utilities.main();
|
| + value.main();
|
| });
|
| }
|
|
|