5 lines
144 B
Kotlin
Vendored
5 lines
144 B
Kotlin
Vendored
fun box() = expectThrowableMessage {
|
|
val list = listOf("Jane", "John")
|
|
assert(list.map { "Doe, $it" }.any { it == "Scott, Michael" })
|
|
}
|