strikt
strikt copied to clipboard
Add Array.hasSize() assertion
"test" {
val list = listOf(1, 2)
val array = arrayOf(1, 2)
expect {
that(list).hasSize(2) // works
that(array).hasSize(2) // <- does NOT work
}
}