Java
Code Template
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#parse("File Header.java")
/**
* ${NAME} class.
* <PRE>
* Describe here.
* </PRE>
*
* <PRE>
* <B>History:</B>
* damian.lee, 0.1.0, Created at ${YEAR}.${MONTH}.${DAY}
* </PRE>
*
* @author : ${USER}
* @version : 0.1.0
*/
public class ${NAME} {
}
Live Template
xptmxm
@org.junit.jupiter.api.Test
@org.junit.jupiter.api.DisplayName("")
void test_$EXPR$() throws Exception {
// given
// when
// then
}
xptmxm2
// given
// when
// then
커뮤니티 버전 프로필 활성화(VM Option)
-Dspring.profiles.active=core,local
Kotlin
xptmxm
@org.junit.jupiter.api.Test
@org.junit.jupiter.api.DisplayName("")
fun test_$EXPR$() {
// given
// when
// then
org.junit.jupiter.api.Assertions.assertTrue(true);
}
IDE
Remove trailing spaces on : 코드의 양끝 공백 제거
Ensure every saved file ends with a line break : 파일 저장 시 끝 라인에 개행문자 추가
Optimiza imports on the fly : Import문 자동 정리 (아주 좋음)
728x90
'# Back-End > IDE' 카테고리의 다른 글
Finder에서 iterms2 바로 열기 (0) | 2023.08.03 |
---|---|
[VS Code] VS Code 프로젝트 Github에 올리기, 연동하기 (0) | 2021.01.21 |
[VS Code] VS Code 기본 터미널을 Git Bash로 설정하기 (0) | 2021.01.21 |