[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
@@ -0,0 +1,42 @@
|
||||
// FILE: ConstructorExample.java
|
||||
|
||||
import lombok.*;
|
||||
|
||||
@RequiredArgsConstructor(staticName = "build")
|
||||
public class ConstructorExample {
|
||||
|
||||
//not required
|
||||
@Getter @Setter private int age;
|
||||
|
||||
//required final
|
||||
@Getter @Setter private final String foo;
|
||||
|
||||
//not required final, because has initializer
|
||||
@Getter @Setter private final int bar = 234;
|
||||
|
||||
//not required
|
||||
@Getter(AccessLevel.PROTECTED) private String name;
|
||||
|
||||
//required by annotation
|
||||
@NonNull
|
||||
private boolean otherField;
|
||||
|
||||
//not required by annotation, because has initializer
|
||||
@NonNull
|
||||
private Long zzzz = 23L;
|
||||
|
||||
@NonNull Integer somethingElse;
|
||||
|
||||
static void javaUsage() {
|
||||
ConstructorExample generated = ConstructorExample.build("foo", true, 12);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
fun box(): String {
|
||||
val generated = ConstructorExample.build("foo", true, 12)
|
||||
assertEquals(generated.foo, "foo")
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user