public class HasProperty<T> extends TypeSafeMatcher<T>
Constructor and Description |
---|
HasProperty(java.lang.String propertyName) |
Modifier and Type | Method and Description |
---|---|
void |
describeMismatchSafely(T item,
Description mismatchDescription)
Subclasses should override this.
|
void |
describeTo(Description description)
Generates a description of the object.
|
static <T> Matcher<T> |
hasProperty(java.lang.String propertyName)
Creates a matcher that matches when the examined object has a JavaBean property
with the specified name.
|
boolean |
matchesSafely(T obj)
Subclasses should implement this.
|
describeMismatch, matches
_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toString
public boolean matchesSafely(T obj)
TypeSafeMatcher
matchesSafely
in class TypeSafeMatcher<T>
public void describeMismatchSafely(T item, Description mismatchDescription)
TypeSafeMatcher
describeMismatchSafely
in class TypeSafeMatcher<T>
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.public static <T> Matcher<T> hasProperty(java.lang.String propertyName)
assertThat(myBean, hasProperty("foo"))
propertyName
- the name of the JavaBean property that examined beans should possess