참고
www.baeldung.com/junit-before-beforeclass-beforeeach-beforeall
발단
어? 왜 @Before, @BeforeClass가 동작을 안 하지?
- Junit5 환경에서 @Before와 @BeforeClass를 사용하려 했는데 해당 애노테이션이 정상적으로 동작하지 않음
찾아보니 JUnit5에서는 @Before → @BeforeEach, @BeforeClass → @BeforeAll로 네이밍이 변경
Junit5에서는 @BeforeEach와 @BeforeAll을 사용!
'자바 개발자되기' 카테고리의 다른 글
Spring @Transactional 어노테이션은 왜 Bean이 아닌 객체에서 적용되지 않는가? (0) | 2020.12.31 |
---|---|
Junit5 @BeforeEach private method가 동작하는 이유 (0) | 2020.12.30 |
[우아콘2020] - Zero Payload 방식 리뷰 (0) | 2020.12.19 |
리팩토링과 TDD (0) | 2020.12.19 |
Junit 병렬 테스트와 Thread Safe - Junit @Execution (0) | 2020.12.16 |