Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 473 Bytes

Mockito cannot mockspy because - final class 해결법.md

File metadata and controls

15 lines (8 loc) · 473 Bytes

Mockito cannot mock/spy because - final class 해결법

🐛 문제상황

Test 구동 시 Mockito cannot mock/spy because - final class 예외가 발생한다.

🏴‍☠️ 원인

Mockito가 final class를 Mocking하려고해서 발생

♻ 해결법

build.gradle.kts에 testImplementation("org.mockito:mockito-inline:2.13.0") 추가

mockito-inlinemockito실험적인 기능을 미리 사용할 수 있는 라이브러리입니다.