Skip to content

Commit 1486b98

Browse files
committed
Capture current behavior with a running test
1 parent 7896e74 commit 1486b98

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

src/test/java/org/openrewrite/java/migrate/lombok/NormalizeSetterTest.java

+20-21
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
package org.openrewrite.java.migrate.lombok;
1717

18-
import org.junit.jupiter.api.Disabled;
1918
import org.junit.jupiter.api.Test;
2019
import org.openrewrite.DocumentExample;
2120
import org.openrewrite.test.RecipeSpec;
@@ -557,9 +556,8 @@ public void setBa(long ba) {
557556
* If existing method names need to be rotated in a loop the recipe should still work.
558557
* For now this is not planned.
559558
*/
560-
@Disabled("Not planned to fix but listed here for completeness")
561559
@Test
562-
void shouldWorkOnCircleCases() {
560+
void shouldWorkOnCircleCasesButDoesntYet() {
563561
rewriteRun(// language=java
564562
java(
565563
"""
@@ -578,26 +576,27 @@ public void getFoo(long foo) {
578576
this.bar = foo;
579577
}
580578
581-
}
582-
""",
583-
"""
584-
585-
class A {
586-
587-
int foo;
588-
589-
int bar;
590-
591-
public void getFoo(long foo) {
592-
this.foo = foo;
593-
}
594-
595-
public void setBar(long bar) {
596-
this.bar = bar;
597-
}
598-
599579
}
600580
"""
581+
// ,
582+
// """
583+
//
584+
// class A {
585+
//
586+
// int foo;
587+
//
588+
// int bar;
589+
//
590+
// public void getFoo(long foo) {
591+
// this.foo = foo;
592+
// }
593+
//
594+
// public void setBar(long bar) {
595+
// this.bar = bar;
596+
// }
597+
//
598+
// }
599+
// """
601600
)
602601
);
603602
}

0 commit comments

Comments
 (0)