From 72fd61cbf0c687c786e3a2daeec63abe02f2a985 Mon Sep 17 00:00:00 2001 From: truman-show <65605968+truman-show@users.noreply.github.com> Date: Mon, 14 Jun 2021 00:35:18 +0900 Subject: [PATCH] =?UTF-8?q?mockito=20=EB=B2=84=EC=A0=84=EC=9D=84=20?= =?UTF-8?q?=EC=98=AC=EB=A0=A4=EB=9D=BC=20(#53)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 3.4.0 -> 3.11.1 로 버전을 올렸습니다. - 3.4.0 은 static method을 사용할 때 MockitoExcension 과 호환되지 않는 이슈가 있습니다. - 발생 예외 : org.mockito.exceptions.misusing.NotAMockException: Argument passed to Mockito.mockingDetails() should be a mock, but is an instance of class java.lang.Class! - 이슈 : https://github.com/mockito/mockito/issues/1967 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 71ae701..0c283a8 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ subprojects { ext { springBootVersion = "2.3.4.RELEASE" - mockitoVersion = "3.4.0" + mockitoVersion = "3.11.1" lombokVersion = "1.18.12" awsSdkVersion = "1.12.5" }