org.hamcrest.text.SubstringMatcher Maven / Gradle / Ivy
Go to download
A self-contained hamcrest jar containing all of the sub-modules in a single artifact.
package org.hamcrest.text;
import org.hamcrest.Description;
import org.hamcrest.TypeSafeMatcher;
public abstract class SubstringMatcher extends TypeSafeMatcher {
// TODO: Replace String with CharSequence to allow for easy interopability between
// String, StringBuffer, StringBuilder, CharBuffer, etc (joe).
protected final String substring;
protected SubstringMatcher(final String substring) {
this.substring = substring;
}
public boolean matchesSafely(String item) {
return evalSubstringOf(item);
}
public void describeTo(Description description) {
description.appendText("a string ")
.appendText(relationship())
.appendText(" ")
.appendValue(substring);
}
protected abstract boolean evalSubstringOf(String string);
protected abstract String relationship();
}