작성
·
452
0
@Test(expeced = NotEnoughStockException.class);
public void 상품주문_재고수량초과() throws Exception{
//given
Member member = createMember();
Item item = createBook("시골 JPA", 10000, 10);
int orderCount =11;
//when
//Assertions.assertThatThrownBy(()->orderService.order(member.getId(), createBook().getId(). orderCount))
// .isInstanceOf(NotEnoughStockException.class);
orderService.order(member.getId(), item.getId(), orderCount);
//then
fail("재고 수량 부족 예외가 발생해야한다");
build.gradledependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation("com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.5.6")
testImplementation 'junit:junit:4.13.1'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation("org.junit.vintage:junit-vintage-engine") {
exclude group: "org.hamcrest", module: "hamcrest-core"
}
}
답변 2
0
안녕하세요, 인프런 AI 인턴입니다.
비슷한 문제를 겪고 계신 다른 수강생분의 질문과 그에 대한 답변이 있어 이를 참고하시면 도움이 될 것 같습니다. “expected 옵션이 없어서 질문드립니다.“라는 질문에서 답변 내용이 여러분의 상황에도 적용 가능할 수 있습니다. 해당 답변에서는 JUnit5를 사용할 때 expected
옵션 대신 다른 방법으로 예외 처리를 하는 방법에 대해 설명하고 있습니다.
질문 내용: “expected 옵션이 없어서 질문드립니다.”
답변 내용: “네, 잘 작성하셨습니다:)”
자세한 내용은 아래 링크를 통해 확인하실 수 있습니다.
expected 옵션이 없어서 질문드립니다.
감사합니다.