Class | Description |
---|---|
AllValueMatcher |
A
ValueMatcher that matches if and only if all of its
component ValueMatcher s match. |
AnyValueMatcher |
A
ValueMatcher that matches if and only if any of its
component ValueMatcher s match. |
DifferenceTestDoubleValueMatcher |
A
ValueMatcher which compares doubles using a difference test
with a tolerance. |
EqualsValueMatcher |
A
ValueMatcher which uses the Object.equals(Object) method to
determine a match. |
ListValueMatcher |
A
ValueMatcher which uses the Object.equals(Object) method to
determine a match. |
NonNullValueMatcher |
A
ValueMatcher which matches null values. |
NotValueMatcher |
A
ValueMatcher that matches if and only if its
component ValueMatcher does not match. |
NullValueMatcher |
A
ValueMatcher which matches non-null values. |
RatioTestDoubleValueMatcher |
A
ValueMatcher which compares doubles using a ratio test
with a tolerance. |