how do you configure junit 5 so that it finds your...
# gradle
b
how do you configure junit 5 so that it finds your tests?
Copy code
tasks.test {
    useJUnitPlatform()
    testLogging {
        exceptionFormat = TestExceptionFormat.FULL
    }
}
doesn't run any tests
got it
had to replace
testImplementation("org.junit.jupiterjunit jupiter api5.5.2") testRuntimeOnly("org.junit.jupiterjunit jupiter engine5.5.2") with testImplementation("org.junit.jupiterjunit jupiter5.5.2")