1. File > Settings > Editor > Live Templates
2. 오른쪽에 + 버튼을 눌러서 Template Group으로 Custom 생성
3. 오른쪽에 + 버튼을 눌러서 Live Template으로 Custom 그룹에 tdd를 생성
4. 템플릿 코드 작성
Abberviation : tdd
Description: Test Code Template
Template Text:
@Test
public void $NAME$() throws Exception {
//given
$END$
//when
//then
}
Define: java
5. 결과 확인
'IntelliJ' 카테고리의 다른 글
[IntelliJ] 프로젝트 Github에 연동하기 (0) | 2024.04.09 |
---|---|
[IntelliJ] IntelliJ 단축키 정리 (0) | 2024.02.02 |