|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.hamcrest.BaseMatcher<T>
org.hamcrest.core.DescribedAs<T>
public class DescribedAs<T>
Provides a custom description to another matcher.
Constructor Summary | |
---|---|
DescribedAs(String descriptionTemplate,
Matcher<T> matcher,
Object[] values)
|
Method Summary | ||
---|---|---|
static
|
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. |
Methods inherited from class org.hamcrest.BaseMatcher |
---|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DescribedAs(String descriptionTemplate, Matcher<T> matcher, Object[] values)
Method Detail |
---|
public boolean matches(Object o)
Matcher
This method matches against Object, instead of the generic type T. This is because the caller of the Matcher does not know at runtime what the type is (because of type erasure with Java generics). It is down to the implementations to check the correct type.
o
- the object against which the matcher is evaluated.
true
if item matches, otherwise false
.BaseMatcher
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.public void describeMismatch(Object item, Description description)
Matcher
matches(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)
For example:
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
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |