12 lines
240 B
Kotlin
Vendored
12 lines
240 B
Kotlin
Vendored
fun box() = expectThrowableMessage {
|
|
val text: String? = "Hello"
|
|
assert(
|
|
text
|
|
== null ||
|
|
(
|
|
text.length == 5 &&
|
|
text.toLowerCase() == text
|
|
)
|
|
)
|
|
}
|