public class IsEmptyIterable<E> extends TypeSafeMatcher<java.lang.Iterable<? extends E>>
| Constructor and Description |
|---|
IsEmptyIterable() |
| Modifier and Type | Method and Description |
|---|---|
void |
describeMismatchSafely(java.lang.Iterable<? extends E> iter,
Description mismatchDescription)
Subclasses should override this.
|
void |
describeTo(Description description)
Generates a description of the object.
|
static <E> Matcher<java.lang.Iterable<? extends E>> |
emptyIterable()
Creates a matcher for
Iterables matching examined iterables that yield no items. |
static <E> Matcher<java.lang.Iterable<E>> |
emptyIterableOf(java.lang.Class<E> unusedToForceReturnType)
Creates a matcher for
Iterables matching examined iterables that yield no items. |
boolean |
matchesSafely(java.lang.Iterable<? extends E> iterable)
Subclasses should implement this.
|
describeMismatch, matches_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toStringpublic boolean matchesSafely(java.lang.Iterable<? extends E> iterable)
TypeSafeMatchermatchesSafely in class TypeSafeMatcher<java.lang.Iterable<? extends E>>iterable - the type safe item to match against.public void describeMismatchSafely(java.lang.Iterable<? extends E> iter, Description mismatchDescription)
TypeSafeMatcherdescribeMismatchSafely in class TypeSafeMatcher<java.lang.Iterable<? extends E>>iter - the type safe item to match against.mismatchDescription - the mismatch description.public void describeTo(Description description)
SelfDescribingdescription - The description to be built or appended to.public static <E> Matcher<java.lang.Iterable<? extends E>> emptyIterable()
Iterables matching examined iterables that yield no items.
For example:
assertThat(new ArrayList<String>(), is(emptyIterable()))
E - the matcher type.public static <E> Matcher<java.lang.Iterable<E>> emptyIterableOf(java.lang.Class<E> unusedToForceReturnType)
Iterables matching examined iterables that yield no items.
For example:
assertThat(new ArrayList<String>(), is(emptyIterableOf(String.class)))
E - the matcher type.unusedToForceReturnType - the type of the iterable's content