After adding kotest in my Android Project the old ...
# kotest
m
After adding kotest in my Android Project the old junit tests are not un but the kotest one do. The output for the junit tests is: “Test events where not received”
added
Copy code
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") {
    }
and worked, not sure if this is a good approach tho…
e
If you have junit4-tests, I think you could just switch the runner for kotest to junit4 and have everything work (it would pul in the vintage engine and use it as well). I'm guessing you used the junit5 runner?
m
hmm, that would provably be! indeed! thanks for the info