기본 애노테이션

@Test

@Test
void create1() {
		System.out.println("create test");
}

@Disabled

@Test
@Disabled
void create2() {
    System.out.println("create test 2");
}

@BeforeEach

@BeforeEach
void beforeEach() {
    System.out.println("before each");
}

@AfterEach

@AfterEach
void afterEach() {
    System.out.println("after each");
}

@BeforeAll

@BeforeAll
static void beforeAll() {
    System.out.println("before all");
}

@AfterAll