doc / ch.tutteli.atrium.api.infix.en_GB / isNotIn

isNotIn

infix fun <T> Expect<T>.isNotIn(expected: IterableLike): Expect<T> (source)

Expects that the subject of this expectation is not (equal to) any value of expected.

Notice that a runtime check applies which assures that only Iterable, Sequence or one of the Array types are passed. This function expects IterableLike (which is a typealias for Any) to avoid cluttering the API.

Exceptions

IllegalArgumentException - in case the iterable is empty.

Return
an Expect for the subject of this expectation.

Since
0.13.0