From 8938d173e446c8d4562c11b86a352b3aa6d02eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A1=B0=EC=9E=AC=EC=A4=91?= <126754298+m-a-king@users.noreply.github.com> Date: Tue, 30 Sep 2025 21:56:28 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20JUnit=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=8B=A4=ED=96=89=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - junit-platform-launcher 의존성 추가 - junit-jupiter-engine을 testRuntimeOnly로 변경 --- app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 704dae8646..619b994f07 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,7 +31,8 @@ dependencies { testImplementation 'org.assertj:assertj-core:3.26.3' testImplementation 'org.mockito:mockito-core:5.15.2' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4' - testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.13.4' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4' + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } test {