Files
sdk/pkg/analysis_server/test/operation/test_all.dart
T
2015-01-09 15:57:51 +00:00

22 lines
571 B
Dart

// 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.
library test.operation.all;
import 'package:unittest/unittest.dart';
import 'operation_queue_test.dart' as operation_queue_test;
import 'operation_test.dart' as operation_test;
/**
* Utility for manually running all tests.
*/
main() {
groupSep = ' | ';
group('operation', () {
operation_queue_test.main();
operation_test.main();
});
}