unit-tests: Add tests for test runner

This commit is contained in:
Ilya Matveev
2017-09-26 13:03:34 +03:00
committed by ilmat192
parent c8cd94c99f
commit 8fcc4c4f30
3 changed files with 60 additions and 14 deletions
@@ -1,3 +1,5 @@
package kotlin.test.tests
import kotlin.test.*
import konan.test.*
@@ -0,0 +1,14 @@
package kotlin.test.tests
import kotlin.test.*
import konan.test.*
@Test
fun test() {
println("test")
}
fun main(args: Array<String>) {
println("Custom main")
TestRunner.run(args)
}