unit-tests: Add tests for test runner
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user