blob: b344a3a2195df24c805e87e92cabbb1a61a751db [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 '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(() {
convert_documentation_into_line.main();
remove_unnecessary_const.main();
remove_unnecessary_new.main();
replace_colon_with_equals.main();
}, name: 'bulk');
}