public class StringContainsInOrder extends TypeSafeMatcher<String>
| Constructor and Description |
|---|
StringContainsInOrder(Iterable<String> substrings) |
| Modifier and Type | Method and Description |
|---|---|
void |
describeMismatchSafely(String item,
Description mismatchDescription)
Subclasses should override this.
|
void |
describeTo(Description description)
Generates a description of the object.
|
boolean |
matchesSafely(String s)
Subclasses should implement this.
|
static Matcher<String> |
stringContainsInOrder(Iterable<String> substrings)
Creates a matcher of
String that matches when the examined string contains all of
the specified substrings, considering the order of their appearance. |
static Matcher<String> |
stringContainsInOrder(String... substrings)
Creates a matcher of
String that matches when the examined string contains all of
the specified substrings, considering the order of their appearance. |
describeMismatch, matches_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toStringpublic boolean matchesSafely(String s)
TypeSafeMatchermatchesSafely in class TypeSafeMatcher<String>public void describeMismatchSafely(String item, Description mismatchDescription)
TypeSafeMatcherdescribeMismatchSafely in class TypeSafeMatcher<String>public void describeTo(Description description)
SelfDescribingdescription - The description to be built or appended to.public static Matcher<String> stringContainsInOrder(Iterable<String> substrings)
String that matches when the examined string contains all of
the specified substrings, considering the order of their appearance.
For example:
assertThat("myfoobarbaz", stringContainsInOrder(Arrays.asList("bar", "foo")))
fails as "foo" occurs before "bar" in the string "myfoobarbaz"substrings - the substrings that must be contained within matching stringspublic static Matcher<String> stringContainsInOrder(String... substrings)
String that matches when the examined string contains all of
the specified substrings, considering the order of their appearance.
For example:
assertThat("myfoobarbaz", stringContainsInOrder("bar", "foo"))
fails as "foo" occurs before "bar" in the string "myfoobarbaz"substrings - the substrings that must be contained within matching stringsCopyright © 2021. All rights reserved.