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

Unified Diff: pkg/analysis_server/test/edit/test_all.dart

Issue 484713003: Support for the 'edit.getAvailableRefactorings' request. (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
« no previous file with comments | « pkg/analysis_server/test/edit/refactoring_test.dart ('k') | pkg/analysis_services/lib/constants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/edit/test_all.dart
diff --git a/pkg/analysis_server/test/edit/test_all.dart b/pkg/analysis_server/test/edit/test_all.dart
index 7c513b6d9788419cee1f719e51beda50997494e4..729dc2338dbe6631209d32ac2605b728120aa748 100644
--- a/pkg/analysis_server/test/edit/test_all.dart
+++ b/pkg/analysis_server/test/edit/test_all.dart
@@ -7,7 +7,8 @@ library test.edit.all;
import 'package:unittest/unittest.dart';
import 'edit_domain_test.dart' as domain_edit_test;
-import 'fix_test.dart' as fix_test;
+import 'fixes_test.dart' as fixes_test;
+import 'refactoring_test.dart' as refactoring_test;
/**
* Utility for manually running all tests.
@@ -16,6 +17,7 @@ main() {
groupSep = ' | ';
group('edit', () {
domain_edit_test.main();
- fix_test.main();
+ fixes_test.main();
+ refactoring_test.main();
});
}
« no previous file with comments | « pkg/analysis_server/test/edit/refactoring_test.dart ('k') | pkg/analysis_services/lib/constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698