blob: fed8c12ae75a10d2fd597b1b2b1274f0fe8ed7b1 [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 'already_migrated_code_decorator_test.dart'
as already_migrated_code_decorator_test;
import 'api_test.dart' as api_test;
import 'decorated_class_hierarchy_test.dart' as decorated_class_hierarchy_test;
import 'decorated_type_test.dart' as decorated_type_test;
import 'edge_builder_flow_analysis_test.dart'
as edge_builder_flow_analysis_test;
import 'edge_builder_test.dart' as edge_builder_test;
import 'instrumentation_test.dart' as instrumentation_test;
import 'node_builder_test.dart' as node_builder_test;
import 'nullability_migration_impl_test.dart'
as nullability_migration_impl_test;
import 'nullability_node_test.dart' as nullability_node_test;
import 'utilities/test_all.dart' as utilities;
main() {
defineReflectiveSuite(() {
already_migrated_code_decorator_test.main();
api_test.main();
decorated_class_hierarchy_test.main();
decorated_type_test.main();
edge_builder_flow_analysis_test.main();
edge_builder_test.main();
instrumentation_test.main();
node_builder_test.main();
nullability_migration_impl_test.main();
nullability_node_test.main();
utilities.main();
});
}