bc207ed8db
#KT-29471 Fixed
14 lines
281 B
Kotlin
Vendored
14 lines
281 B
Kotlin
Vendored
package app
|
|
|
|
import lib.*
|
|
|
|
fun runAppAndReturnOk(): String {
|
|
val a = lib.getCounter { 100 }
|
|
val x = a.getInt()
|
|
if (x != 100) error("a returned $x but expected '100'")
|
|
val y = a.getInt()
|
|
if (y != 101) error("a returned $y but expected '101'")
|
|
|
|
return "OK"
|
|
}
|