https://junit.org/junit4/ JUnit – About JUnit is a simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks. @Test public void newArrayListsHaveNoElements() { assertThat(new ArrayList ().size(), is(0)); } @Test public void sizeReturnsNum junit.org Junit4 애노테이션 @BeforeClass : 테스트 클래스 내에서 수행 전 한 번만 실행, static method 여야 함 @AfterClass : 테스트 ..