public class IsArrayContainingInAnyOrder<E> extends TypeSafeMatcher<E[]>
| Constructor and Description |
|---|
IsArrayContainingInAnyOrder(Collection<Matcher<? super E>> matchers) |
| Modifier and Type | Method and Description |
|---|---|
static <E> Matcher<E[]> |
arrayContainingInAnyOrder(Collection<Matcher<? super E>> matchers) |
static <E> Matcher<E[]> |
arrayContainingInAnyOrder(E... items) |
static <E> Matcher<E[]> |
arrayContainingInAnyOrder(Matcher<? super E>... 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.
|
describeMismatch, matches_dont_implement_Matcher___instead_extend_BaseMatcher_, toStringpublic IsArrayContainingInAnyOrder(Collection<Matcher<? super E>> matchers)
public boolean matchesSafely(E[] item)
TypeSafeMatchermatchesSafely in class TypeSafeMatcher<E[]>public void describeMismatchSafely(E[] item, Description mismatchDescription)
TypeSafeMatcherdescribeMismatchSafely in class TypeSafeMatcher<E[]>public void describeTo(Description description)
SelfDescribingdescription - The description to be built or appended to.public static <E> Matcher<E[]> arrayContainingInAnyOrder(Matcher<? super E>... matchers)
public static <E> Matcher<E[]> arrayContainingInAnyOrder(Collection<Matcher<? super E>> matchers)
public static <E> Matcher<E[]> arrayContainingInAnyOrder(E... items)
Copyright © 2016. All rights reserved.