add test to verify config key callSuper=call works with Value

This commit is contained in:
Roel Spilker
2016-06-08 22:44:19 +02:00
parent 6cec66eb2b
commit ea219cd7ce
3 changed files with 80 additions and 0 deletions
@@ -0,0 +1,39 @@
class ValueParent {
}
final class ValueCallSuper extends ValueParent {
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public ValueCallSuper() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof ValueCallSuper)) return false;
final ValueCallSuper other = (ValueCallSuper) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (!super.equals(o)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
protected boolean canEqual(final java.lang.Object other) {
return other instanceof ValueCallSuper;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = result * PRIME + super.hashCode();
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public java.lang.String toString() {
return "ValueCallSuper()";
}
}
@@ -0,0 +1,34 @@
class ValueParent {
ValueParent() {
super();
}
}
final @lombok.Value class ValueCallSuper extends ValueParent {
public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") boolean equals(final java.lang.Object o) {
if ((o == this))
return true;
if ((! (o instanceof ValueCallSuper)))
return false;
final ValueCallSuper other = (ValueCallSuper) o;
if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((! super.equals(o)))
return false;
return true;
}
protected @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") boolean canEqual(final java.lang.Object other) {
return (other instanceof ValueCallSuper);
}
public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int hashCode() {
final int PRIME = 59;
int result = 1;
result = ((result * PRIME) + super.hashCode());
return result;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") java.lang.String toString() {
return "ValueCallSuper()";
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") ValueCallSuper() {
super();
}
}
@@ -0,0 +1,7 @@
//CONF: lombok.equalsAndHashCode.callSuper = call
class ValueParent {
}
@lombok.Value
class ValueCallSuper extends ValueParent {
}