fun <T> Assert<Array<T>>.containsNone(vararg elements: Any?): Unit
Platform and version requirements: Common
fun Assert<Collection<*>>.containsNone(vararg elements: Any?): Unit
Platform and version requirements: Common
Asserts the collection does not contain any of the expected elements.
See Also
fun <K, V> Assert<Map<K, V>>.containsNone(vararg elements: Pair<K, V>): Unit
Platform and version requirements: Common
Asserts the map does not contain any of the expected elements.
See Also
fun Assert<ByteArray>.containsNone(vararg elements: Byte): Unit
Asserts the ByteArray does not contain any of the expected elements.
See Also
fun Assert<IntArray>.containsNone(vararg elements: Int): Unit
Asserts the IntArray does not contain any of the expected elements.
See Also
fun Assert<ShortArray>.containsNone(vararg elements: Short): Unit
Asserts the ShortArray does not contain any of the expected elements.
See Also
fun Assert<LongArray>.containsNone(vararg elements: Long): Unit
Asserts the LongArray does not contain any of the expected elements.
See Also
fun Assert<FloatArray>.containsNone(vararg elements: Float): Unit
Asserts the FloatArray does not contain any of the expected elements.
See Also
fun Assert<DoubleArray>.containsNone(vararg elements: Double): Unit
Asserts the DoubleArray does not contain any of the expected elements.
See Also
fun Assert<CharArray>.containsNone(vararg elements: Char): Unit
Asserts the CharArray does not contain any of the expected elements.
See Also