Is there any way to run a JUnit test class when us...
# kotest
p
Is there any way to run a JUnit test class when using kotest? We have an abstract base class that defines lifecycle/tests for a component using JUnit5 (from a library we don’t control) but we’re using kotest in our project.
w
I won’t help with details, but we run both Kotest and legacy JUnit tests (through vintage runner) without issues. Gradle just recognizes and runs all tests, regardless of the runner
p
So it turns out we didn’t pull in the junit5 runner 🙂 Thanks 👍
👌 1
d
I pulled in the engine and api, and it still seems not to work... I get "no tests found" 🤕... am I missing something? It's a multi-module gradle project.