CharSequenceAssertions
Collection of assertion functions and builders which are applicable to subjects with a CharSequence type.
Inheritors
Functions
Link copied to clipboard
abstract fun <T : CharSequence> containsBuilder(container: AssertionContainer<T>): CharSequenceContains.EntryPointStep<T, NoOpSearchBehaviour>
Starts the building process of a sophisticated contains
assertions.
Link copied to clipboard
abstract fun <T : CharSequence> containsNotBuilder(container: AssertionContainer<T>): NotCheckerStep<T, NotSearchBehaviour>
Starts the building process of a sophisticated contains
assertions and already applies a NotCheckerStep with a NotSearchBehaviour.
Link copied to clipboard
abstract fun <T : CharSequence> endsNotWith(container: AssertionContainer<T>, expected: CharSequence): Assertion
Link copied to clipboard
abstract fun <T : CharSequence> endsWith(container: AssertionContainer<T>, expected: CharSequence): Assertion
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun <T : CharSequence> matches(container: AssertionContainer<T>, expected: Regex): Assertion
Link copied to clipboard
abstract fun <T : CharSequence> mismatches(container: AssertionContainer<T>, expected: Regex): Assertion
Link copied to clipboard
abstract fun <T : CharSequence> startsNotWith(container: AssertionContainer<T>, expected: CharSequence): Assertion
Link copied to clipboard
abstract fun <T : CharSequence> startsWith(container: AssertionContainer<T>, expected: CharSequence): Assertion