Closed neoneo closed 7 years ago
can you try adding a dependency to org.junit.platform:junit-platform-runner:${junitPlatformVersion}
?
That was it, thanks!
@raniejade's solution worked for me and just to clarify: this is exactly what I did in my Kotlin DSL Gradle build.gradle.kts
:
dependencies {
// ...
testCompile("org.junit.platform:junit-platform-runner:1.0.1")
}
Hi,
I keep getting the following error in IDEA:
Running from the command line works fine.
I've found a related issue here: https://github.com/spekframework/spek/issues/256, but none of the tips posted there have helped. Probably because it's an Android Studio issue, while I'm using IntelliJ IDEA for a non-Android project.
build.gradle:
How can I get this working? Thanks a lot in advance.
Jeroen