public interface Matcher<T> extends SelfDescribing
BaseMatcher
abstract class,
which will ensure that the Matcher API can grow to support
new features and remain compatible with all Matcher implementations.
For easy access to common Matcher implementations, use the static factory
methods in CoreMatchers
.CoreMatchers
,
BaseMatcher
Modifier and Type | Method and Description |
---|---|
void |
_dont_implement_Matcher___instead_extend_BaseMatcher_()
This method simply acts a friendly reminder not to implement Matcher directly and
instead extend BaseMatcher.
|
boolean |
matches(Object item)
Evaluates the matcher for argument item.
|
describeTo
boolean matches(Object item)
item
- the object against which the matcher is evaluated.true
if item matches, otherwise false
.BaseMatcher
void _dont_implement_Matcher___instead_extend_BaseMatcher_()
for reasons why.
,
BaseMatcher
Copyright © 2018. All rights reserved.