unit-tests: Simple support for test classes

This commit is contained in:
Ilya Matveev
2017-09-11 13:51:04 +03:00
committed by ilmat192
parent 1abb430f15
commit 45992a2b75
12 changed files with 395 additions and 224 deletions
+14 -4
View File
@@ -1,4 +1,5 @@
import kotlin.test.Test
import konan.test.*
class A {
@Test
@@ -7,8 +8,17 @@ class A {
}
}
@Test
fun test() {
println("test")
}
//abstract class AA<T> {
// abstract fun a(): T
//}
//
//
//class BB: AA<Int>() {
// override fun a() = 5
//}
//@Test
//fun test() {
// println("test")
//}