| Index: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameTypeProcessorTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameTypeProcessorTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameTypeProcessorTest.java
|
| index 26b310908ccd910de1705ebab24e6e7ce1c0808a..17515a2a899b64bb85f6a41b10cd5ba0cc45f8c2 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameTypeProcessorTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/RenameTypeProcessorTest.java
|
| @@ -394,13 +394,15 @@ public final class RenameTypeProcessorTest extends RefactoringTest {
|
| "}");
|
| }
|
|
|
| - public void test_OK_updateIdentifierInComment() throws Exception {
|
| + public void test_OK_updateInComment() throws Exception {
|
| setTestUnitContent(
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
| "/** Describe of [Test] here. */",
|
| "class Test {",
|
| + " Test() {}",
|
| + " Test.named() {}",
|
| "}",
|
| - "/** Creates new [Test] instance. Test as word. */",
|
| + "/** Creates new [Test] using [new Test] or [new Test.named]. */",
|
| "Test createTest() => null;",
|
| "");
|
| Type type = findElement("Test {");
|
| @@ -410,8 +412,10 @@ public final class RenameTypeProcessorTest extends RefactoringTest {
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
| "/** Describe of [NewName] here. */",
|
| "class NewName {",
|
| + " NewName() {}",
|
| + " NewName.named() {}",
|
| "}",
|
| - "/** Creates new [NewName] instance. Test as word. */",
|
| + "/** Creates new [NewName] using [new NewName] or [new NewName.named]. */",
|
| "NewName createTest() => null;",
|
| "");
|
| }
|
|
|