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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java

Issue 11368132: Issue 6560. Report error when generative constructor calls factory constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java
index 5e50c649deca3f3e2141eaaaf79d082d4bf6599e..e70997a4cfe2f5d411601c6459c379586cb71fb5 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/DeleteResourceParticipantTest.java
@@ -85,7 +85,7 @@ public final class DeleteResourceParticipantTest extends RefactoringTest {
"#import('target.dart');",
"");
assertTrue(targetFile.exists());
- // do rename
+ // do delete
deleteFile(targetFile);
assertTestUnitContent(
"// filler filler filler filler filler filler filler filler filler filler",
@@ -102,7 +102,7 @@ public final class DeleteResourceParticipantTest extends RefactoringTest {
"#source('target.dart');",
"");
assertTrue(targetFile.exists());
- // do rename
+ // do delete
deleteFile(targetFile);
assertTestUnitContent(
"// filler filler filler filler filler filler filler filler filler filler",
@@ -121,7 +121,7 @@ public final class DeleteResourceParticipantTest extends RefactoringTest {
"// trailing comment",
""}));
assertTrue(targetFile.exists());
- // do rename
+ // do delete
deleteFile(targetFile);
assertTestUnitContent(Joiner.on("\r\n").join(
new String[] {
@@ -139,7 +139,7 @@ public final class DeleteResourceParticipantTest extends RefactoringTest {
"#library('Test');",
"");
assertTrue(targetFile.exists());
- // do rename
+ // do delete
deleteFile(targetFile);
assertTestUnitContent(
"// filler filler filler filler filler filler filler filler filler filler",

Powered by Google App Engine
This is Rietveld 408576698