Matcher<java.lang.String>, SelfDescribingpublic class StringContainsInOrder extends TypeSafeMatcher<java.lang.String>
| Constructor | Description |
|---|---|
StringContainsInOrder(java.lang.Iterable<java.lang.String> substrings) |
| 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.
|
boolean |
matchesSafely(java.lang.String s) |
Subclasses should implement this.
|
static Matcher<java.lang.String> |
stringContainsInOrder(java.lang.Iterable<java.lang.String> substrings) |
Creates a matcher of
String that matches when the examined string contains all of
the specified substrings, regardless of the order of their appearance. |
_dont_implement_Matcher___instead_extend_BaseMatcher_, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitdescribeMismatch, matchespublic StringContainsInOrder(java.lang.Iterable<java.lang.String> substrings)
public boolean matchesSafely(java.lang.String s)
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> stringContainsInOrder(java.lang.Iterable<java.lang.String> substrings)
String that matches when the examined string contains all of
the specified substrings, regardless of the order of their appearance.
For example:
assertThat("myfoobarbaz", stringContainsInOrder(Arrays.asList("bar", "foo")))substrings - the substrings that must be contained within matching strings