[Error] org.mockito.exceptions.misusing.UnnecessaryStubbingException: Unnecessary stubbings detected.

이정음·2022년 4월 15일
0

SpringBoot

목록 보기
5/7

상황

Service UnitTest 중 발생

원인

@Before 에서 실행되는 아래 Stubbing이 쓰이지 않은 메소드가 있었다.

given(userRepository.findByEmail(userEmail)).willReturn(Optional.of(user));

해결

@Before 어노테이션을 제거하고, 

필요한 메소드에서 호출하는 방식으로 변경!

profile
코드먹는 하마

0개의 댓글