Files
2018-12-11 22:48:53 +03:00

11 lines
227 B
Kotlin
Vendored

package app
import lib.*
fun runAppAndReturnOk(): String {
val i = getInterface()
val value = i.getInt()
if (value != 10) error("getInterface().getInt() is '$value', but is expected to be '10'")
return "OK"
}