From 042694bc53704d3f074ffdf23128aa2a6ff9b967 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Mon, 20 Jan 2020 21:27:47 +0100 Subject: [PATCH] Reinstate running of OutputCaptureRuleTests See gh-19826 --- spring-boot-project/spring-boot-test/build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-test/build.gradle b/spring-boot-project/spring-boot-test/build.gradle index 6fb022cc2c9..16c7f51c176 100644 --- a/spring-boot-project/spring-boot-test/build.gradle +++ b/spring-boot-project/spring-boot-test/build.gradle @@ -52,4 +52,10 @@ dependencies { testImplementation 'org.testng:testng' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' -} \ No newline at end of file + testRuntimeOnly 'org.junit.vintage:junit-vintage-engine' +} + +test { + useJUnit() + useJUnitPlatform() +}