fun Assert<Array<*>>.hasSize(size: Int): Unit
Platform and version requirements: Common
Asserts the array has the expected size.
fun Assert<Collection<*>>.hasSize(size: Int): Unit
Platform and version requirements: Common
fun Assert<Map<*, *>>.hasSize(size: Int): Unit
Platform and version requirements: Common
Asserts the collection has the expected size.
@JvmName("byteArrayHasSize") fun Assert<ByteArray>.hasSize(size: Int): Unit
Asserts the ByteArray has the expected size.
@JvmName("intArrayHasSize") fun Assert<IntArray>.hasSize(size: Int): Unit
Asserts the IntArray has the expected size.
@JvmName("shortArrayHasSize") fun Assert<ShortArray>.hasSize(size: Int): Unit
Asserts the ShortArray has the expected size.
@JvmName("longArrayHasSize") fun Assert<LongArray>.hasSize(size: Int): Unit
Asserts the LongArray has the expected size.
@JvmName("floatArrayHasSize") fun Assert<FloatArray>.hasSize(size: Int): Unit
Asserts the FloatArray has the expected size.
@JvmName("doubleArrayHasSize") fun Assert<DoubleArray>.hasSize(size: Int): Unit
Asserts the DoubleArray has the expected size.
@JvmName("charArrayHasSize") fun Assert<CharArray>.hasSize(size: Int): Unit
Asserts the CharArray has the expected size.