[Lombok] Convert tests with compilation errors to diagnostic tests
This commit is contained in:
committed by
teamcity
parent
fb57e1ecd5
commit
430ea414a9
@@ -0,0 +1,30 @@
|
||||
// FILE: ConstructorExample.java
|
||||
|
||||
import lombok.*;
|
||||
|
||||
@AllArgsConstructor(staticName = "of")
|
||||
@RequiredArgsConstructor(staticName = "of")
|
||||
public class ConstructorExample<A, B> {
|
||||
|
||||
@Getter @Setter private int age = 10;
|
||||
|
||||
@Getter private final A name;
|
||||
|
||||
private B otherField;
|
||||
|
||||
static void javaUsage() {
|
||||
ConstructorExample<Long, Boolean> generated = ConstructorExample.of(12, 42L, true);
|
||||
ConstructorExample<String, Boolean> generatedReq = ConstructorExample.of("234");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// FILE: test.kt
|
||||
|
||||
fun box(): String {
|
||||
val generated: ConstructorExample<Long, Boolean> = ConstructorExample.of(12, 42L, true)
|
||||
assertEquals(generated.name, 42L)
|
||||
val generatedReq: ConstructorExample<String, Boolean> = ConstructorExample.of("234")
|
||||
assertEquals(generatedReq.name, "234")
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user