assertk / assertk.assertions / containsNone

containsNone

(common, jvm) fun Assert<ByteArray>.containsNone(vararg elements: Byte): Unit

Asserts the ByteArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<IntArray>.containsNone(vararg elements: Int): Unit

Asserts the IntArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<ShortArray>.containsNone(vararg elements: Short): Unit

Asserts the ShortArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<LongArray>.containsNone(vararg elements: Long): Unit

Asserts the LongArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<FloatArray>.containsNone(vararg elements: Float): Unit

Asserts the FloatArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<DoubleArray>.containsNone(vararg elements: Double): Unit

Asserts the DoubleArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<CharArray>.containsNone(vararg elements: Char): Unit

Asserts the CharArray does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun Assert<Array<*>>.containsNone(vararg elements: Any?): Unit
fun Assert<Iterable<*>>.containsNone(vararg elements: Any?): Unit

Asserts the collection does not contain any of the expected elements.

See Also

containsAll

(common, jvm) fun <K, V> Assert<Map<K, V>>.containsNone(vararg elements: Pair<K, V>): Unit

Asserts the map does not contain any of the expected elements.

See Also

containsAll