Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: pkg/analysis_services/test/refactoring/test_all.dart

Issue 464363004: 'Rename Constructor' refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_services/test/refactoring/test_all.dart
diff --git a/pkg/analysis_services/test/refactoring/test_all.dart b/pkg/analysis_services/test/refactoring/test_all.dart
index bb18e157e5cf516eaf434243187eeb81eb91f558..598209b83cc5242c996c8e33001980d93bec6897 100644
--- a/pkg/analysis_services/test/refactoring/test_all.dart
+++ b/pkg/analysis_services/test/refactoring/test_all.dart
@@ -7,6 +7,8 @@ library test.services.refactoring;
import 'package:unittest/unittest.dart';
import 'naming_conventions_test.dart' as naming_conventions_test;
+import 'rename_constructor_test.dart' as rename_constructor_test;
+import 'rename_import_test.dart' as rename_import_test;
import 'rename_library_test.dart' as rename_library_test;
import 'rename_local_test.dart' as rename_local_test;
@@ -15,6 +17,8 @@ main() {
groupSep = ' | ';
group('refactoring', () {
naming_conventions_test.main();
+ rename_constructor_test.main();
+ rename_import_test.main();
rename_library_test.main();
rename_local_test.main();
});

Powered by Google App Engine
This is Rietveld 408576698