blob: 3fe25015e4fd27402cbaed406859c5d4fd98b3fd [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:test_reflective_loader/test_reflective_loader.dart';
import 'domain_abstract_test.dart' as domain_abstract_test;
import 'plugin/test_all.dart' as plugin_all;
/**
* Utility for manually running all tests.
*/
main() {
defineReflectiveSuite(() {
domain_abstract_test.main();
plugin_all.main();
}, name: 'src');
}