infix fun <T : CharSequence> CharSequenceContains.CheckerOption<T, NoOpSearchBehaviour>.regex(pattern: String): AssertionPlant<T>
(source)Finishes the specification of the sophisticated contains
assertion where the given regular expression pattern
is expected to have a match, using a non disjoint search.
Delegates to the RegexPatterns(pattern)
.
pattern
- The pattern which is expected to have a match against the input of the search.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
The AssertionPlant for which the assertion was built to support a fluent API.
@JvmName("regexIgnoringCase") infix fun <T : CharSequence> CharSequenceContains.CheckerOption<T, IgnoringCaseSearchBehaviour>.regex(pattern: String): AssertionPlant<T>
(source)Finishes the specification of the sophisticated contains
assertion where the given regular expression pattern
is expected to have a match (ignoring case), using a non disjoint search.
Delegates to the RegexPatterns(pattern)
.
pattern
- The patterns which is expected to have a match against the input of the search.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
The AssertionPlant for which the assertion was built to support a fluent API.