public class DescribedAs<T> extends BaseMatcher<T>
| Constructor and Description |
|---|
DescribedAs(String descriptionTemplate,
Matcher<T> matcher,
Object[] values) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Matcher<T> |
describedAs(String description,
Matcher<T> matcher,
Object... values)
Wraps an existing matcher, overriding its description with that specified.
|
void |
describeMismatch(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(Object o)
Evaluates the matcher for argument item.
|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toStringpublic DescribedAs(String descriptionTemplate, Matcher<T> matcher, Object[] values)
public boolean matches(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(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(String description, Matcher<T> matcher, 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 descriptionCopyright © 2002–2017 JUnit. All rights reserved.