blob: 7df43c49ab830957beffad5a630ee194ebf7aa72 [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_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();
});
}