Matcher<java.lang.String>, SelfDescribingpublic class IsEqualIgnoringCase extends TypeSafeMatcher<java.lang.String>
| Constructor | Description |
|---|---|
IsEqualIgnoringCase(java.lang.String string) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
describeMismatchSafely(java.lang.String item,
Description mismatchDescription) |
Subclasses should override this.
|
void |
describeTo(Description description) |
Generates a description of the object.
|
static Matcher<java.lang.String> |
equalToIgnoringCase(java.lang.String expectedString) |
Creates a matcher of
String that matches when the examined string is equal to
the specified expectedString, ignoring case. |
boolean |
matchesSafely(java.lang.String item) |
Subclasses should implement this.
|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitdescribeMismatch, matchespublic boolean matchesSafely(java.lang.String item)
TypeSafeMatchermatchesSafely in class TypeSafeMatcher<java.lang.String>public void describeMismatchSafely(java.lang.String item,
Description mismatchDescription)
TypeSafeMatcherdescribeMismatchSafely in class TypeSafeMatcher<java.lang.String>public void describeTo(Description description)
SelfDescribingdescription - The description to be built or appended to.public static Matcher<java.lang.String> equalToIgnoringCase(java.lang.String expectedString)
String that matches when the examined string is equal to
the specified expectedString, ignoring case.
For example:
assertThat("Foo", equalToIgnoringCase("FOO"))expectedString - the expected value of matched strings