junit

Junit 자바언어를 위한 단위테스트 프레임워크이다. 단위테스트란, 작성한 코드가 의도대로 작동하는지 작은 단위로 검증하는 것을 의미 import org.junit.jupiter.api.*; public class JunitCycleTest { @DisplayName("전체 시작전 처음한번, ex) db연결, 테스트환경 초기화") @BeforeAll static void beforeAll(){ System.out.println("@BeforeAll"); } @DisplayName("매번실행") @BeforeEach public void beforeEach(){ System.out.println("@BeforeEach"); } @Test public void test1(){ System.out.printl..
아디봉
'junit' 태그의 글 목록