blob: ae6ee41831f5ddf429b85abd97158515ba013e2c [file]
// Copyright (c) 2022, 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 'add_constructor_name_test.dart' as add_constructor_name;
import 'add_import_prefix_test.dart' as add_import_prefix;
import 'convert_all_formal_parameters_to_named_test.dart'
as convert_all_formal_parameters_to_named;
import 'convert_selected_formal_parameters_to_named_test.dart'
as convert_selected_formal_parameters_to_named;
import 'move_selected_formal_parameters_left_test.dart'
as move_selected_formal_parameters_left;
import 'move_top_level_to_file_test.dart' as move_top_level_to_file;
import 'remove_constructor_name_test.dart' as remove_constructor_name;
import 'remove_import_prefix_test.dart' as remove_import_prefix;
void main() {
defineReflectiveSuite(() {
add_constructor_name.main();
add_import_prefix.main();
convert_all_formal_parameters_to_named.main();
convert_selected_formal_parameters_to_named.main();
move_selected_formal_parameters_left.main();
move_top_level_to_file.main();
remove_constructor_name.main();
remove_import_prefix.main();
}, name: 'refactoring');
}