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 error message or stack trace does EqualsVerifier give?
java.lang.AssertionError: AbstractMethodError:
For more information, go to: http://www.jqno.nl/equalsverifier/errormessages
at nl.jqno.equalsverifier.EqualsVerifier.handleError(EqualsVerifier.java:381)
at nl.jqno.equalsverifier.EqualsVerifier.verify(EqualsVerifier.java:370)
at org.openstreetmap.josm.data.osm.StorageTest.testEqualsContract2(StorageTest.java:29)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.openstreetmap.josm.testutils.JOSMTestRules$TimeoutThread.run(JOSMTestRules.java:348)
Caused by: java.lang.AbstractMethodError
at java.util.AbstractSet.equals(AbstractSet.java:92)
at org.openstreetmap.josm.data.osm.TestSet.equals(TestSet.java:40)
at nl.jqno.equalsverifier.HierarchyChecker.checkSuperclass(HierarchyChecker.java:77)
at nl.jqno.equalsverifier.HierarchyChecker.check(HierarchyChecker.java:56)
at nl.jqno.equalsverifier.EqualsVerifier.verifyWithExamples(EqualsVerifier.java:431)
at nl.jqno.equalsverifier.EqualsVerifier.performVerification(EqualsVerifier.java:393)
at nl.jqno.equalsverifier.EqualsVerifier.verify(EqualsVerifier.java:364)
... 10 more
Which version of EqualsVerifier are you using?
2.1.7
Please provide any additional information below.
This comes probably from the fact that AsbtractSet does not define size()
The text was updated successfully, but these errors were encountered:
What steps will reproduce the problem?
Test a class extending AbstractSet
What is the code that triggers this problem?
What error message or stack trace does EqualsVerifier give?
Which version of EqualsVerifier are you using?
2.1.7
Please provide any additional information below.
This comes probably from the fact that AsbtractSet does not define
size()
The text was updated successfully, but these errors were encountered: