개발/IDE

[IntelliJ] - Live Templates 활용하여 테스트 코드 쉽게 작성하기

dongdev 2022. 5. 31. 19:55
@Test
public void $NAME$() throws Exception {
    //given
    $END$
    //when
    
    //then
}

shift 두번 입력 -> live templates 검색 -> 위 코드를 추가

 

custom 그룹 밑에 생성했습니다~

 

 

 

테스트 코드 작성을 생활화 하자!