or

fun <T> MokkeryMatcherScope.or(first: T, second: T, vararg moreMatchers: T): T(source)

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

// matches every `getForIndex` with arg that is equal 2 or 4
every { dependency.getForIndex(or(1, 4)) }