[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
@@ -0,0 +1,35 @@
|
||||
// FILE: GetterTest.java
|
||||
|
||||
import lombok.*;
|
||||
import lombok.experimental.*;
|
||||
|
||||
@Getter @Setter
|
||||
public class GetterTest {
|
||||
private String name;
|
||||
private int age;
|
||||
@Accessors(chain = true)
|
||||
private boolean fluent;
|
||||
|
||||
static void test() {
|
||||
val obj = new GetterTest();
|
||||
GetterTest ref = obj.fluent(true);
|
||||
obj.name();
|
||||
obj.age();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
fun box(): String {
|
||||
val obj = GetterTest()
|
||||
val ref: GetterTest = obj.fluent(true)
|
||||
obj.name()
|
||||
obj.age()
|
||||
return "OK"
|
||||
}
|
||||
|
||||
// FILE: lombok.config
|
||||
lombok.accessors.fluent=true
|
||||
lombok.accessors.chain=false
|
||||
Reference in New Issue
Block a user