annotation1 Java Junit 5 with VSCode(실행, assert ) #2 테스트 수행 시 해당 테스트 코드에서 딱 한번만, 아님 함수마다 한번씩만 실행하려 하면 해당 어노테이션을 사용하면 된다. 실행 관련 Annotation @BeforeAll - 테스트 수행 시 한번만 실행 @BeforeEach - @Test가 붙은 함수 수행 전 실행 @AfterEach - @Test가 붙은 함수 수행 후 실행 @AfterAll - 테스트 종료 시 한번 호출 import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.. 2022. 1. 22. 이전 1 다음