@Test
void create(){
Study study = new Study();
assertNotNull(study);
System.out.println("create");
}
@Test
void create1(){
System.out.println("create1"
);
}
@BeforeAll
static void beforeAll(){
System.out.println("beforeAll ");
}
@BeforeEach
void beforeEach(){
System.out.println("beforeEach ");
}
@AfterAll
static void afterAll(){
System.out.println("afterAll");
}
@AfterEach
void afterEach(){
System.out.println("afterEach");
}
@Test : 테스트를 실행할 함수 지정
@BeforeEach, AfterEach : 테스트 함수 이전과 이후에 실행(매번 호출)
@BeforeAll, AfterAll : 테스트 시작과 끝에 실행(한번만 실행)
@Disabled : 테스트에서 제외시킴 (잘 사용하지 않는다)
@DisplayNameGeneration : 언더바 ( )로 함수 표기를 하면 대신 blank로 바꿔서 보여준다.
@DisplayName : 자신이 설정한 이름으로 표기
@DisplayName("study 만들기")
void create(){
Study study = new Study();
assertNotNull(study);
System.out.println("create");
}
해결법 : File->Setting->Build,Execution,Deployment->Gradle->Intellij로 변경