File tree 1 file changed +20
-21
lines changed
src/test/java/org/openrewrite/java/migrate/lombok
1 file changed +20
-21
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .openrewrite .java .migrate .lombok ;
17
17
18
- import org .junit .jupiter .api .Disabled ;
19
18
import org .junit .jupiter .api .Test ;
20
19
import org .openrewrite .DocumentExample ;
21
20
import org .openrewrite .test .RecipeSpec ;
@@ -557,9 +556,8 @@ public void setBa(long ba) {
557
556
* If existing method names need to be rotated in a loop the recipe should still work.
558
557
* For now this is not planned.
559
558
*/
560
- @ Disabled ("Not planned to fix but listed here for completeness" )
561
559
@ Test
562
- void shouldWorkOnCircleCases () {
560
+ void shouldWorkOnCircleCasesButDoesntYet () {
563
561
rewriteRun (// language=java
564
562
java (
565
563
"""
@@ -578,26 +576,27 @@ public void getFoo(long foo) {
578
576
this.bar = foo;
579
577
}
580
578
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
-
599
579
}
600
580
"""
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
+ // """
601
600
)
602
601
);
603
602
}
You can’t perform that action at this time.
0 commit comments