| Package | Description |
|---|---|
| net.obvj.junit.utils.matchers |
Provides matchers in general, for usage with
org.hamcrest.MatcherAssert. |
| Modifier and Type | Method and Description |
|---|---|
static StringMatcher |
AdvancedMatchers.containsAll(String... substrings)
Creates a matcher that matches if the examined string contains all of the
specified substrings (regardless of the order they appear in the string).
|
static StringMatcher |
StringMatcher.containsAll(String... substrings)
Creates a matcher that matches if the examined string contains all of the
specified substrings (regardless of the order they appear in the string).
|
static StringMatcher |
AdvancedMatchers.containsAny(String... substrings)
Creates a matcher that matches if the examined string contains any of the
specified substrings.
|
static StringMatcher |
StringMatcher.containsAny(String... substrings)
Creates a matcher that matches if the examined string contains any of the
specified substrings.
|
static StringMatcher |
AdvancedMatchers.containsNone(String... substrings)
Creates a matcher that matches if the examined string contains none of the
specified substrings.
|
static StringMatcher |
StringMatcher.containsNone(String... substrings)
Creates a matcher that matches if the examined string contains none of the
specified substrings.
|
StringMatcher |
StringMatcher.ignoreCase()
Tells the matcher to compare strings irrespective of case.
|
Copyright © 2023. All rights reserved.