Matcher<E[]>
, SelfDescribing
public class IsArrayContainingInOrder<E> extends TypeSafeMatcher<E[]>
Constructor | Description |
---|---|
IsArrayContainingInOrder(java.util.List<Matcher<? super E>> matchers) |
Modifier and Type | Method | Description |
---|---|---|
static <E> Matcher<E[]> |
arrayContaining(E... items) |
Creates a matcher for arrays that matcheswhen each item in the examined array is
logically equal to the corresponding item in the specified items.
|
static <E> Matcher<E[]> |
arrayContaining(java.util.List<Matcher<? super E>> itemMatchers) |
Creates a matcher for arrays that matches when each item in the examined array satisfies the
corresponding matcher in the specified list of matchers.
|
static <E> Matcher<E[]> |
arrayContaining(Matcher<? super E>... itemMatchers) |
Creates a matcher for arrays that matches when each item in the examined array satisfies the
corresponding matcher in the specified matchers.
|
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.
|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
describeMismatch, matches
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.public static <E> Matcher<E[]> arrayContaining(E... items)
assertThat(new String[]{"foo", "bar"}, contains("foo", "bar"))
items
- the items that must equal the items within an examined arraypublic static <E> Matcher<E[]> arrayContaining(Matcher<? super E>... itemMatchers)
assertThat(new String[]{"foo", "bar"}, contains(equalTo("foo"), equalTo("bar")))
itemMatchers
- the matchers that must be satisfied by the items in the examined arraypublic static <E> Matcher<E[]> arrayContaining(java.util.List<Matcher<? super E>> itemMatchers)
assertThat(new String[]{"foo", "bar"}, contains(Arrays.asList(equalTo("foo"), equalTo("bar"))))
itemMatchers
- a list of matchers, each of which must be satisfied by the corresponding item in an examined array