| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.services.refactoring; | 5 library test.services.refactoring; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 | 8 |
| 9 import 'naming_conventions_test.dart' as naming_conventions_test; | 9 import 'naming_conventions_test.dart' as naming_conventions_test; |
| 10 import 'rename_constructor_test.dart' as rename_constructor_test; |
| 11 import 'rename_import_test.dart' as rename_import_test; |
| 10 import 'rename_library_test.dart' as rename_library_test; | 12 import 'rename_library_test.dart' as rename_library_test; |
| 11 import 'rename_local_test.dart' as rename_local_test; | 13 import 'rename_local_test.dart' as rename_local_test; |
| 12 | 14 |
| 13 /// Utility for manually running all tests. | 15 /// Utility for manually running all tests. |
| 14 main() { | 16 main() { |
| 15 groupSep = ' | '; | 17 groupSep = ' | '; |
| 16 group('refactoring', () { | 18 group('refactoring', () { |
| 17 naming_conventions_test.main(); | 19 naming_conventions_test.main(); |
| 20 rename_constructor_test.main(); |
| 21 rename_import_test.main(); |
| 18 rename_library_test.main(); | 22 rename_library_test.main(); |
| 19 rename_local_test.main(); | 23 rename_local_test.main(); |
| 20 }); | 24 }); |
| 21 } | 25 } |
| OLD | NEW |