Skip to content

Instantly share code, notes, and snippets.

@kmin135
Last active July 31, 2022 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmin135/665c854a44e5b6f67d2e8fba2445ccd0 to your computer and use it in GitHub Desktop.
Save kmin135/665c854a44e5b6f67d2e8fba2445ccd0 to your computer and use it in GitHub Desktop.
Intellij 세팅

Live Templates

  • Settings > Live Templates
    • context는 Java 로 세팅
  • 만들어둔 이름으로 타이핑 후 tab을 누르면 템플릿으로 자동 완성됨
# tdd 

@Test
public void $NAME$() {
    // arrange
    $END$
    // action
    // assert
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment