void 메서드를 실행할 때 예외를 던지고 싶습니다.
when(booking.validate(any())).thenThrow(BookingException.builder().build());
하지만 컴파일 오류가 있습니다.
Required type: T
Provided: void
reason: no instance(s) of type variable(s) T exist so that void conforms to T
void 메서드를 실행할 때 예외를 던지고 싶습니다.
when(booking.validate(any())).thenThrow(BookingException.builder().build());
하지만 컴파일 오류가 있습니다.
Required type: T
Provided: void
reason: no instance(s) of type variable(s) T exist so that void conforms to T
나는 올바른 구문을 알아 냈습니다.
Service mockedService = new DefaultServie();
doNothing().when(mockedService).sendReportingLogs(null);
이것이 질문에 답하기를 바랍니다.
커스텀 스프링 SecurityConfigurer (0) | 2022.11.11 |
---|---|
Spring Security의 AuthenticationManagerResolver 사용방법(예제) (0) | 2022.11.11 |
봄 반응형 ClientRequest에서 문자열로 본문을 가져오는 것이 좋습니까? (0) | 2022.11.11 |
추가 @RequestBody를 사용하여 POST 요청에서 페이징 클라이언트에 페이징 가능을 전달하는 방법 (0) | 2022.11.10 |
org.eclipse.jgit.api.errors.InvalidRemoteException: 잘못된 원격: 원점 - Spring Cloud (0) | 2022.11.10 |