blob: 26ea8bf1d852be0b5a25b7a7194b12d8a42b9630 [file] [log] [blame] [edit]
// Copyright (c) 2015, 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:test_reflective_loader/test_reflective_loader.dart';
import 'either_test.dart' as either_test;
import 'glob_test.dart' as glob_test;
import 'yaml_test.dart' as yaml_test;
/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
either_test.main();
glob_test.main();
yaml_test.main();
}, name: 'util');
}