public class DescribedAs<T> extends BaseMatcher<T>
| 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_, toStringpublic 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