[JUnit 5] JUnit 설정 파일

Title: JUnit 설정 파일



junit-platform.properties

개요

  • junit-platform.properties 파일은 JUnit 설정 파일이다.
  • JUnit 관련 설정은 해당 파일에 작성하면 된다.
  • 파일경로
    • src/test/resources/junit-platform.properties


주요 설정

테스트 인스턴스 라이프사이클 설정

junit.jupiter.testinstance.lifecycle.default = per_class


확장팩 자동 감지 기능

junit.jupiter.extensions.autodetection.enabled = true

확장팩에 대한 자세한 내용은 다음 게시글에서 다룬다.


@Disabled 무시하고 실행하기

junit.jupiter.conditions.deactivate = org.junit.*DisabledCondition


테스트 이름 표기 전략 설정

junit.jupiter.displayname.generator.default = org.junit.jupiter.api.DisplayNameGenerator$ReplaceUnderscores

  • 위와 같이 설정시, 테스트메서드의 이름 중 언더스코어(_)를 공백문자로 변경해준다.




  • 본 게시글은 백기선님의 강의를 토대로 정리한 글입니다.
  • 더 자세한 내용을 알고 싶으신 분들이 계신다면, 해당 강의를 수강하시는 것을 추천드립니다.