junit 5: use explicit engine dependency

GitOrigin-RevId: 29b1fef195acfab1933d3581d3c8253131becec0
This commit is contained in:
Anna Kozlova
2020-11-30 12:03:17 +01:00
committed by intellij-monorepo-bot
parent b84edcd9b9
commit 0b493eff2a
2 changed files with 2 additions and 2 deletions

View File

@@ -57,6 +57,6 @@ public class GradleJavaFrameworkSupportProvider extends GradleFrameworkSupportPr
" useJUnitPlatform()\n" +
"}")
.addDependencyNotation("testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'")
.addDependencyNotation("testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'");
.addDependencyNotation("testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:1.6.0'");
}
}

View File

@@ -101,7 +101,7 @@ public class GradleProjectWizardTest extends NewProjectWizardTestCase {
"\n" +
"dependencies {\n" +
" testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'\n" +
" testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'\n" +
" testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:1.6.0'\n" +
"}\n" +
"\n" +
"test {\n" +