Matcher<java.lang.String>
, SelfDescribing
public class IsEqualIgnoringWhiteSpace extends TypeSafeMatcher<java.lang.String>
Constructor | Description |
---|---|
IsEqualIgnoringWhiteSpace(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> |
equalToIgnoringWhiteSpace(java.lang.String expectedString) |
Creates a matcher of
String that matches when the examined string is equal to
the specified expectedString, when whitespace differences are (mostly) ignored. |
boolean |
matchesSafely(java.lang.String item) |
Subclasses should implement this.
|
java.lang.String |
stripSpace(java.lang.String toBeStripped) |
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
describeMismatch, matches
public IsEqualIgnoringWhiteSpace(java.lang.String string)
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 java.lang.String stripSpace(java.lang.String toBeStripped)
public static Matcher<java.lang.String> equalToIgnoringWhiteSpace(java.lang.String expectedString)
String
that matches when the examined string is equal to
the specified expectedString, when whitespace differences are (mostly) ignored. To be
exact, the following whitespace rules are applied:
assertThat(" my\tfoo bar ", equalToIgnoringWhiteSpace(" my foo bar"))
expectedString
- the expected value of matched strings