- equals(Object) - Method in class nl.vpro.test.util.TestClass
-
- equalsConsistentWithComparable(Comparable, Object) - Method in class nl.vpro.test.theory.ComparableTest
-
- equalsIsConsistent(Object, Object) - Method in class nl.vpro.test.theory.ObjectTest
-
For any non-null reference values x and y, multiple invocations
of x.equals(y) consistently return true or consistently return
false, provided no information used in equals comparisons on
the objects is modified.
- equalsIsReflexive(Object) - Method in class nl.vpro.test.theory.ObjectTest
-
For any non-null reference value x, x.equals(x) should return true
- equalsIsSymmetric(Object, Object) - Method in class nl.vpro.test.theory.ObjectTest
-
For any non-null reference values x and y, x.equals(y)
should return true if and only if y.equals(x) returns true.
- equalsIsTransitive(Object, Object, Object) - Method in class nl.vpro.test.theory.ObjectTest
-
For any non-null reference values x, y, and z, if x.equals(y)
returns true and y.equals(z) returns true, then x.equals(z)
should return true.
- equalsReturnFalseOnNull(Object) - Method in class nl.vpro.test.theory.ObjectTest
-
For any non-null reference value x, x.equals(null) should
return false.
- equalsWorks(Object, Object) - Method in class nl.vpro.test.theory.ObjectTest
-
Test that x.equals(y) where x and y are the same datapoint
instance works.
- ExceptionCollector - Class in nl.vpro.test.jupiter
-
- ExceptionCollector() - Constructor for class nl.vpro.test.jupiter.ExceptionCollector
-