blob: 4241cf2ce1b4083f4498ecc2fb6a2fc11e3dbcfc [file] [log] [blame]
// Copyright (c) 2019, 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 'api_test.dart' as api_test;
import 'graph_builder_test.dart' as graph_builder_test;
import 'node_builder_test.dart' as node_builder_test;
import 'nullability_node_test.dart' as nullability_node_test;
main() {
defineReflectiveSuite(() {
api_test.main();
graph_builder_test.main();
node_builder_test.main();
nullability_node_test.main();
});
}