blob: 4a0d39b449f5f572b9d8738d59fb2d9404c8dca4 [file] [log] [blame]
// 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_analysis_test.dart' as analysis_operation_test;
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', () {
analysis_operation_test.main();
operation_queue_test.main();
operation_test.main();
});
}