Package-level declarations

Kotest assertion extensions for verifying stubs and recorded requests.

Functions

Link copied to clipboard
fun doesNotContain(substr: String): Matcher<String?>

Returns a matcher that verifies a nullable string does not contain the specified substring, using case-sensitive comparison.

Link copied to clipboard
fun doesNotContainIgnoringCase(substr: String): Matcher<String?>

Creates a matcher that checks if a given string does not contain the specified substring, ignoring case sensitivity.

Link copied to clipboard
fun <T : Any> objectEquals(request: T?, name: String): Matcher<T?>

Returns a matcher that verifies whether the actual value is equal to the specified expected object.