What is the difference between maven junit-jupiter-api
and modules junit-jupiter-engine
? Do I need to include both dependencies in build.gradle
?
Do I need to write both dependencies like
testCompile("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testCompile("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
or
testCompile("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
enough?
And do I need to add a dependency on junit-vintage-engine
?
source
share