public class DescribedAs<T> extends BaseMatcher<T>
| Modifier and Type | Field and Description |
|---|---|
private static java.util.regex.Pattern |
ARG_PATTERN |
private java.lang.String |
descriptionTemplate |
private Matcher<T> |
matcher |
private java.lang.Object[] |
values |
| Constructor and Description |
|---|
DescribedAs(java.lang.String descriptionTemplate,
Matcher<T> matcher,
java.lang.Object[] values) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Matcher<T> |
describedAs(java.lang.String description,
Matcher<T> matcher,
java.lang.Object... values)
Wraps an existing matcher, overriding its description with that specified.
|
void |
describeMismatch(java.lang.Object item,
Description description)
Generate a description of why the matcher has not accepted the item.
|
void |
describeTo(Description description)
Generates a description of the object.
|
boolean |
matches(java.lang.Object o)
Evaluates the matcher for argument item.
|
_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toStringprivate final java.lang.String descriptionTemplate
private final java.lang.Object[] values
private static final java.util.regex.Pattern ARG_PATTERN
public boolean matches(java.lang.Object o)
Matchero - the object against which the matcher is evaluated.true if item matches, otherwise false.BaseMatcherpublic void describeTo(Description description)
SelfDescribingdescription - The description to be built or appended to.public void describeMismatch(java.lang.Object item,
Description description)
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.description - The description to be built or appended to.public static <T> Matcher<T> describedAs(java.lang.String description, Matcher<T> matcher, java.lang.Object... values)
describedAs("a big decimal equal to %0", equalTo(myBigDecimal), myBigDecimal.toPlainString())description - the new description for the wrapped matchermatcher - the matcher to wrapvalues - optional values to insert into the tokenised description