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

Unified Diff: pkg/analysis_server/test/services/refactoring/abstract_rename.dart

Issue 908463004: Convert refactoring tests to use 'await'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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_server/test/services/refactoring/abstract_rename.dart
diff --git a/pkg/analysis_server/test/services/refactoring/abstract_rename.dart b/pkg/analysis_server/test/services/refactoring/abstract_rename.dart
index 75d922c4c0413c125151e6b525321a291388f8f9..871f806c99529d4d0a0e062bbe71abaaeb0099f0 100644
--- a/pkg/analysis_server/test/services/refactoring/abstract_rename.dart
+++ b/pkg/analysis_server/test/services/refactoring/abstract_rename.dart
@@ -75,25 +75,4 @@ class RenameRefactoringTest extends RefactoringTest {
}
return null;
}
-
-// /**
-// * Asserts result of applying [change] to [testCode].
-// */
-// void assertTestChangeResult(Change change, String expected)
-// {
-// assertChangeResult(change, testSource, expected);
-// }
-//
-// /**
-// * Asserts result of applying [change] to [source].
-// */
-// void assertChangeResult(Change change, Source source, String expected)
-// {
-// SourceChange sourceChange = getSourceChange(compositeChange, source);
-// assertNotNull("No change for: " + source.toString(), sourceChange);
-// String sourceResult = getChangeResult(context, source, sourceChange);
-// assertEquals(expected, sourceResult);
-//// AnalysisContext context = getAnalysisContext();
-//// assertChangeResult(context, compositeChange, source, expected);
-// }
}

Powered by Google App Engine
This is Rietveld 408576698