[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
@@ -0,0 +1,37 @@
|
||||
// FILE: SetterTest.java
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.Setter;
|
||||
import lombok.Getter;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
@Setter
|
||||
@Getter
|
||||
public class SetterTest {
|
||||
@Accessors(fluent = true) private int fluent;
|
||||
|
||||
@Accessors(chain = true) private String chained;
|
||||
|
||||
@Accessors(chain = true, fluent = true) private String whyNotBoth;
|
||||
|
||||
|
||||
void test() {
|
||||
fluent(12);
|
||||
setChained("zz").getChained();
|
||||
whyNotBoth("zzz").whyNotBoth();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
fun box(): String {
|
||||
val obj = SetterTest()
|
||||
obj.fluent(12)
|
||||
assertEquals(obj.fluent(), 12)
|
||||
obj.setChained("zz").getChained()
|
||||
assertEquals(obj.getChained(), "zz")
|
||||
obj.whyNotBoth("zzz").whyNotBoth()
|
||||
assertEquals(obj.whyNotBoth(), "zzz")
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user