T C
03/27/2020, 10:39 AMdependencies {
...
testImplementation 'io.kotest:kotest-runner-junit5:4.0.1'
testImplementation 'io.kotest:kotest-assertions-core-jvm:4.0.1'
testImplementation "io.mockk:mockk:1.9.3"
testImplementation 'junit:junit:4.12'
}
as well as
android.testOptions {
unitTests.all {
useJUnitPlatform()
}
}
when trying to mimic examples from the docs I cannot seem to be able to extend any of the Spec classes (just getting unresolved reference) nor use keywords like shouldBe
. The only package I seem to be able to `import`is io.kotest.matchers
. Any idea what I am missing? Thanks!themishkun
03/27/2020, 11:47 AMT C
03/27/2020, 11:51 AM