You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. implement an enum (without equals method)
2. run equalsverifier on it
3. you will get identical-copy and symmetry warning
4. you will need to use
EqualsVerifier.forClass(myclass).withRedefinedSuperclass().suppress(Warning.IDEN
TICAL_COPY).verify();
I would expect equalsverifier to work out-of-the-box for enums that don't
overwrite equals()
Original issue reported on code.google.com by sebidiet...@gmail.com on 8 Mar 2014 at 11:23
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
sebidiet...@gmail.com
on 8 Mar 2014 at 11:23The text was updated successfully, but these errors were encountered: