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
Iterable s matching examined iterables that yield no items. |
static <E> Matcher<java.lang.Iterable<E>> |
emptyIterableOf(java.lang.Class<E> unusedToForceReturnType)
Creates a matcher for
Iterable s 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_, toString
public boolean matchesSafely(java.lang.Iterable<? extends E> iterable)
TypeSafeMatcher
matchesSafely
in class TypeSafeMatcher<java.lang.Iterable<? extends E>>
public void describeMismatchSafely(java.lang.Iterable<? extends E> iter, Description mismatchDescription)
TypeSafeMatcher
describeMismatchSafely
in class TypeSafeMatcher<java.lang.Iterable<? extends E>>
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.public static <E> Matcher<java.lang.Iterable<? extends E>> emptyIterable()
Iterable
s matching examined iterables that yield no items.
For example:
assertThat(new ArrayList<String>(), is(emptyIterable()))
public static <E> Matcher<java.lang.Iterable<E>> emptyIterableOf(java.lang.Class<E> unusedToForceReturnType)
Iterable
s matching examined iterables that yield no items.
For example:
assertThat(new ArrayList<String>(), is(emptyIterableOf(String.class)))
unusedToForceReturnType
- the type of the iterable's content