blob: 77d9e264e39bc41716ec277afe6e30574b17e339 [file] [log] [blame]
// Copyright (c) 2020, 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_override_test.dart' as add_override;
import 'convert_documentation_into_line_test.dart'
as convert_documentation_into_line;
import 'remove_unnecessary_const_test.dart' as remove_unnecessary_const;
import 'remove_unnecessary_new_test.dart' as remove_unnecessary_new;
import 'replace_colon_with_equals_test.dart' as replace_colon_with_equals;
void main() {
defineReflectiveSuite(() {
add_override.main();
convert_documentation_into_line.main();
remove_unnecessary_const.main();
remove_unnecessary_new.main();
replace_colon_with_equals.main();
}, name: 'bulk');
}