notToEqualOneIn

infix fun <T> Expect<T>.notToEqualOneIn(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.

Return

an Expect for the subject of this expectation.

Since

0.17.0

Throws

in case the iterable is empty.

Samples

expect(99) notToEqualOneIn listOf(1, 2, 3, 4)

fails {
    expect(1) notToEqualOneIn listOf(1, 2, 3, 4)
}