-
Given following record:
In How would a proper EqualsVerifier test looks like for this case? |
Beta Was this translation helpful? Give feedback.
Answered by
jqno
Nov 14, 2024
Replies: 1 comment 1 reply
-
You can suppress EqualsVerifier
.forClass(Document.class)
.suppress(Warning.NULL_FIELDS, Warning.STRICT_HASHCODE)
.verify(); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bjmi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can suppress
Warning.STRICT_HASHCODE
: