[Mockito] TC TooManyActualInvocations 에러 해결
발생 오류 발생 이유 : verify 를 1번으로 선언했지만, 실제 코드에서 2번 불림 org.mockito.exceptions.verification.TooManyActualInvocations: whereIsNimoService.findNimo( , , ); Wanted 1 time: - But was 2 times: 오류 TC 코드 import static org.mockito.Mockito.verify; @Mock WhereIsNimoService whereIsNimoService; @Test public void test() { verify(whereIsNimoService).findNimo(any(), any(), any()); } 수정 TC 코드 Mockito.times 를 사용하여 wher..
괴발개발
2022. 6. 10. 10:39
반응형