gildor
01/30/2018, 12:45 AMalbertgao
01/30/2018, 1:20 AMkotlin-test-common
and its jvm
implementation kotlin-test-junit
. Any counterparts in the KN world?ilya.matveev
01/30/2018, 4:22 AMkotin.test
package to write your tests and then run the compiler with -tr
option to produce a test executable. KN Gradle plugin doesn't support testing out of the box yet but you may create a test binary manually passing -tr
as an extra option:
konanArtifacts {
program('test-binary') {
...
extraOpts '-tr'
}
}