인프런 커뮤니티 질문&답변

Klolarion님의 프로필 이미지

작성한 질문수

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

주문 기능 테스트

Junit5로 테스트 작성하기

22.07.11 21:56 작성

·

548

3

메세지 검증방식으로 해보았습니다. 

Junit5로 시도하는분들에게 도움이 되길~

public class NotEnoughStockException extends RuntimeException{
@Override
    public String getMessage() {
        return "재고가 모자랍니다";
    }
}
NotEnoughStockException thrown = 
assertThrows(NotEnoughStockException.class, 
() -> orderService.order(member.getId(), item.getId(), order));

assertEquals("재고가 모자랍니다", thrown.getMessage());

 

 

답변 1

1

김영한님의 프로필 이미지
김영한
지식공유자

2022. 07. 17. 13:53

Klolarion님 공유 감사합니다^^