org.hamcrest.core
Class IsCollectionContaining<T>
java.lang.Object
org.hamcrest.BaseMatcher<T>
org.hamcrest.TypeSafeDiagnosingMatcher<Iterable<? super T>>
org.hamcrest.core.IsCollectionContaining<T>
- All Implemented Interfaces:
- Matcher<Iterable<? super T>>, SelfDescribing
public class IsCollectionContaining<T>
- extends TypeSafeDiagnosingMatcher<Iterable<? super T>>
IsCollectionContaining
public IsCollectionContaining(Matcher<? super T> elementMatcher)
matchesSafely
protected boolean matchesSafely(Iterable<? super T> collection,
Description mismatchDescription)
- Description copied from class:
TypeSafeDiagnosingMatcher
- Subclasses should implement this. The item will already have been checked
for the specific type and will never be null.
- Specified by:
matchesSafely
in class TypeSafeDiagnosingMatcher<Iterable<? super T>>
describeTo
public void describeTo(Description description)
- Description copied from interface:
SelfDescribing
- Generates a description of the object. The description may be part of a
a description of a larger object of which this is just a component, so it
should be worded appropriately.
- Parameters:
description
- The description to be built or appended to.
hasItem
public static <T> Matcher<Iterable<? super T>> hasItem(Matcher<? super T> elementMatcher)
hasItem
public static <T> Matcher<Iterable<? super T>> hasItem(T element)
hasItems
public static <T> Matcher<Iterable<T>> hasItems(Matcher<? super T>... elementMatchers)
hasItems
public static <T> Matcher<Iterable<T>> hasItems(T... elements)