Extract junit testcase, delete unneeded code

This commit is contained in:
Alexander Udalov
2013-02-07 21:07:33 +04:00
committed by Alexander Udalov
parent 8a605b3884
commit b311255d96
6 changed files with 60 additions and 82 deletions
@@ -1,13 +0,0 @@
import kotlin.test.*
import org.junit.Test as test
public class Test {
test fun f(): Unit {
assertEquals(true, !false)
}
}
fun box() : String {
Test().f()
return "OK"
}