| Index: pkg/analysis_server/test/operation/test_all.dart
|
| diff --git a/pkg/analysis_server/test/operation/test_all.dart b/pkg/analysis_server/test/operation/test_all.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ac6a51ceeadadf1bf57668cd88219418224e719f
|
| --- /dev/null
|
| +++ b/pkg/analysis_server/test/operation/test_all.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| +// 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.
|
| +
|
| +import 'package:unittest/unittest.dart';
|
| +
|
| +import 'operation_test.dart' as operation_test;
|
| +import 'operation_queue_test.dart' as operation_queue_test;
|
| +
|
| +/**
|
| + * Utility for manually running all tests.
|
| + */
|
| +main() {
|
| + groupSep = ' | ';
|
| + group('operation', () {
|
| + operation_test.main();
|
| + operation_queue_test.main();
|
| + });
|
| +}
|
|
|