blob: 3e611d98fcdfa49928ae9cc366af38855b8218e6 [file] [log] [blame]
// Copyright (c) 2017, 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 'file_state_test.dart' as file_state;
import 'format_test.dart' as format;
import 'kernel_driver_test.dart' as kernel_driver;
/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
file_state.main();
format.main();
kernel_driver.main();
}, name: 'incremental');
}