|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hamcrest.BaseMatcher<T> org.hamcrest.TypeSafeMatcher<java.lang.String> org.hamcrest.text.IsEqualIgnoringCase
public class IsEqualIgnoringCase
Tests if a string is equal to another string, regardless of the case.
Constructor Summary | |
---|---|
IsEqualIgnoringCase(java.lang.String string)
|
Method Summary | |
---|---|
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. |
Methods inherited from class org.hamcrest.TypeSafeMatcher |
---|
describeMismatch, matches |
Methods inherited from class org.hamcrest.BaseMatcher |
---|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public IsEqualIgnoringCase(java.lang.String string)
Method Detail |
---|
public boolean matchesSafely(java.lang.String item)
TypeSafeMatcher
matchesSafely
in class TypeSafeMatcher<java.lang.String>
public void describeMismatchSafely(java.lang.String item, Description mismatchDescription)
TypeSafeMatcher
describeMismatchSafely
in class TypeSafeMatcher<java.lang.String>
public void describeTo(Description description)
SelfDescribing
description
- 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |