BaseMatcher implementations.See: Description
| Class | Description |
|---|---|
| EqualsResultMatcher<U> |
A matcher that evaluates against the result of invoking a function,
wrapped by the
Supplier
The goal is to defer the computation until the matcher needs to be actually evaluated. |
| EventuallyMatcher<U> |
A matcher that will evaluate another matcher repeatedly until it matches, or fail after some number of attempts.
|
| HeaderMatcher<T> |
Are the
MessageHeaders of a Message containing any entry
or multiple that match? |
| MapContentMatchers<T,V> |
Matchers that examine the contents of a
Map. |
| MockitoMessageMatchers |
Mockito matcher factory for
Message matcher creation. |
| PayloadAndHeaderMatcher<T> |
Matcher to make assertions about message equality easier.
|
| PayloadMatcher<T> |
Is the payload of a
Message equal to a given value or is matching
a given matcher? |
BaseMatcher implementations.