| Index: pkg/analysis_server/test/computer/test_all.dart
|
| diff --git a/pkg/smoke/test/mirrors_test.dart b/pkg/analysis_server/test/computer/test_all.dart
|
| similarity index 57%
|
| copy from pkg/smoke/test/mirrors_test.dart
|
| copy to pkg/analysis_server/test/computer/test_all.dart
|
| index cac643aab81c93a6e746f0e98bda711882f6c7f6..2badfdfba9f43a6d90c18141a5bc2dc3f989124e 100644
|
| --- a/pkg/smoke/test/mirrors_test.dart
|
| +++ b/pkg/analysis_server/test/computer/test_all.dart
|
| @@ -2,13 +2,19 @@
|
| // 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 smoke.test.mirrors_test;
|
| +library test.computer.all;
|
|
|
| -import 'package:smoke/mirrors.dart';
|
| import 'package:unittest/unittest.dart';
|
| -import 'common.dart' as common show main;
|
|
|
| +import 'element_test.dart' as element_test;
|
| +
|
| +
|
| +/**
|
| + * Utility for manually running all tests.
|
| + */
|
| main() {
|
| - setUp(useMirrors);
|
| - common.main();
|
| -}
|
| + groupSep = ' | ';
|
| + group('index', () {
|
| + element_test.main();
|
| + });
|
| +}
|
|
|