T - Matcher<T>, SelfDescribingAllOf, IsInstanceOf, SamePropertyValuesAs.PropertyMatcherpublic abstract class DiagnosingMatcher<T> extends BaseMatcher<T>
| Constructor | Description |
|---|---|
DiagnosingMatcher() |
| Modifier and Type | Method | Description |
|---|---|---|
void |
describeMismatch(java.lang.Object item,
Description mismatchDescription) |
Generate a description of why the matcher has not accepted the item.
|
boolean |
matches(java.lang.Object item) |
Evaluates the matcher for argument item.
|
protected abstract boolean |
matches(java.lang.Object item,
Description mismatchDescription) |
_dont_implement_Matcher___instead_extend_BaseMatcher_, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitdescribeTopublic final boolean matches(java.lang.Object item)
Matcheritem - the object against which the matcher is evaluated.true if item matches, otherwise false.BaseMatcherpublic final void describeMismatch(java.lang.Object item,
Description mismatchDescription)
Matchermatches(item) is false, but
will not check this.describeMismatch in interface Matcher<T>describeMismatch in class BaseMatcher<T>item - The item that the Matcher has rejected.mismatchDescription - The description to be built or appended to.protected abstract boolean matches(java.lang.Object item,
Description mismatchDescription)