Package-level declarations

Types

Link copied to clipboard

Contains composite matchers for logical operations.

Functions

Link copied to clipboard
fun <T> MokkeryMatcherScope.and(first: T, second: T, vararg moreMatchers: T): T

Matches argument that satisfies all the matchers (first, second and all from moreMatchers).

Link copied to clipboard
fun <T> MokkeryMatcherScope.not(matcher: T): T

Matches argument that does not satisfy matcher.

Link copied to clipboard
fun <T> MokkeryMatcherScope.or(first: T, second: T, vararg moreMatchers: T): T

Matches argument that satisfies any matcher (first, second or any from moreMatchers).