package org.hamcrest.text;
import static org.hamcrest.core.AnyOf.anyOf;
import static org.hamcrest.core.IsNull.nullValue;
import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
Matches empty Strings (and null).
/**
* Matches empty Strings (and null).
*/
public final class IsEmptyString extends BaseMatcher<String> {
private static final IsEmptyString INSTANCE = new IsEmptyString();
@SuppressWarnings("unchecked")
private static final Matcher<String> NULL_OR_EMPTY_INSTANCE = anyOf(nullValue(), INSTANCE);
@Override
public boolean matches(Object item) {
return item != null && item instanceof String && ((String) item).equals("");
}
@Override
public void describeTo(Description description) {
description.appendText("an empty string");
}
Creates a matcher of String
that matches when the examined string has zero length.
For example:
assertThat("", isEmptyString())
/**
* Creates a matcher of {@link String} that matches when the examined string has zero length.
* <p/>
* For example:
* <pre>assertThat("", isEmptyString())</pre>
*
*/
@Factory
public static Matcher<String> isEmptyString() {
return INSTANCE;
}
Creates a matcher of String
that matches when the examined string is null
, or
has zero length.
For example:
assertThat(((String)null), isEmptyString())
/**
* Creates a matcher of {@link String} that matches when the examined string is <code>null</code>, or
* has zero length.
* <p/>
* For example:
* <pre>assertThat(((String)null), isEmptyString())</pre>
*
*/
@Factory
public static Matcher<String> isEmptyOrNullString() {
return NULL_OR_EMPTY_INSTANCE;
}
}