public class ArrayAsIterableMatcher<E> extends TypeSafeMatcher<E[]>
Modifier and Type | Field and Description |
---|---|
protected TypeSafeDiagnosingMatcher<java.lang.Iterable<? extends E>> |
iterableMatcher |
protected java.util.Collection<Matcher<? super E>> |
matchers |
Constructor and Description |
---|
ArrayAsIterableMatcher(TypeSafeDiagnosingMatcher<java.lang.Iterable<? extends E>> iterableMatcher,
java.util.Collection<Matcher<? super E>> matchers,
java.lang.String message) |
Modifier and Type | Method and Description |
---|---|
void |
describeMismatchSafely(E[] item,
Description mismatchDescription)
Subclasses should override this.
|
void |
describeTo(Description description)
Generates a description of the object.
|
boolean |
matchesSafely(E[] item)
Subclasses should implement this.
|
describeMismatch, matches
_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toString
protected final TypeSafeDiagnosingMatcher<java.lang.Iterable<? extends E>> iterableMatcher
public ArrayAsIterableMatcher(TypeSafeDiagnosingMatcher<java.lang.Iterable<? extends E>> iterableMatcher, java.util.Collection<Matcher<? super E>> matchers, java.lang.String message)
public boolean matchesSafely(E[] item)
TypeSafeMatcher
matchesSafely
in class TypeSafeMatcher<E[]>
public void describeMismatchSafely(E[] item, Description mismatchDescription)
TypeSafeMatcher
describeMismatchSafely
in class TypeSafeMatcher<E[]>
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.