org.hamcrest.collection
Class IsArrayContaining<T>
java.lang.Object
org.hamcrest.BaseMatcher<T>
org.hamcrest.TypeSafeMatcher<T[]>
org.hamcrest.collection.IsArrayContaining<T>
- All Implemented Interfaces:
- Matcher<T[]>, SelfDescribing
public class IsArrayContaining<T>
- extends TypeSafeMatcher<T[]>
Matches if an array contains an item satisfying a nested matcher.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
IsArrayContaining
public IsArrayContaining(Matcher<? super T> elementMatcher)
matchesSafely
public boolean matchesSafely(T[] array)
- Specified by:
matchesSafely in class TypeSafeMatcher<T[]>
describeMismatchSafely
public void describeMismatchSafely(T[] item,
Description mismatchDescription)
- Overrides:
describeMismatchSafely in class TypeSafeMatcher<T[]>
describeTo
public void describeTo(Description description)
hasItemInArray
public static <T> Matcher<T[]> hasItemInArray(Matcher<? super T> elementMatcher)
- Evaluates to true if any item in an array satisfies the given matcher.
hasItemInArray
public static <T> Matcher<T[]> hasItemInArray(T element)
- This is a shortcut to the frequently used hasItemInArray(equalTo(x)).
For example, assertThat(hasItemInArray(equal_to(x)))
vs. assertThat(hasItemInArray(x))
Copyright © 2010. All Rights Reserved.