blob: bb18e157e5cf516eaf434243187eeb81eb91f558 [file] [log] [blame]
// Copyright (c) 2014, 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.
library test.services.refactoring;
import 'package:unittest/unittest.dart';
import 'naming_conventions_test.dart' as naming_conventions_test;
import 'rename_library_test.dart' as rename_library_test;
import 'rename_local_test.dart' as rename_local_test;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
group('refactoring', () {
naming_conventions_test.main();
rename_library_test.main();
rename_local_test.main();
});
}