ValueTypeContractTestAbstract

Contract test for value types ( #equals(Object) equals and #hashCode() hashCode ), and also Comparable#compareTo(Object) compareTo for any value types that also are Comparable

API

ValueTypeContractTestAbstract.java
class ValueTypeContractTestAbstract<T> {
  void setUp()
  void notEqualToNull()
  void reflexiveAndSymmetric()
  void notEqual()
  void transitiveWhenEqual()
  void comparableEquivalence()
}