목차
접기
728x90
반응형
assertThat, is 메서드 사용시 필요한 import
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
- 위의 import 외의 것으로 실험해본 결과 노란색 줄로 경고가 뜨거나 실행이 되지 않음.
assertThat 사용 예시
package com.sbs.khr.test.domain;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import org.junit.jupiter.api.Test;
class MyFirstJUnitJupiterTestsTest {
@Test
void test() {
Calculator calculator = new Calculator();
assertThat(3, is(calculator.add(1, 2)));
}
}
package와 class명은 테스트를 위해 정리되지 않은 이름들로 양해 바람.
728x90
반응형
LIST
'JUnit 5' 카테고리의 다른 글
MockMvc 클래스 설명 / MockMvcBuilders (0) | 2021.04.21 |
---|---|
[ JUnit 5 ] 테스트 코드를 작성하는 이유는? (0) | 2021.01.06 |
[ JUnit 5 ] 기초 복습 / Test Method , Lifecycle Method 종류 (0) | 2021.01.06 |
[ java ] Junit 4 (0) | 2021.01.01 |
[ java ] TDD, JUnit 5 사용법 기초 2 및 오류 해결 방법 (0) | 2020.12.26 |