티스토리 뷰
매번 스터디 하면서 프로젝트 생성 시 junit5를 적용해서 테스트를 수행하는데 항상 이를 햇갈려서
이곳에 기록해 둔다....
내 머리는 정말 안좋은 것 같다..ㅜㅜ
dependencies {
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude module: 'junit'
}
testCompile group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
//이클립스에서는 해당 주석을 푼다. (luncher 없다고 에러 발생..)
//testCompile 'org.junit.platform:junit-platform-launcher'
testCompile 'org.junit.jupiter:junit-jupiter-params'
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
}
'Study > Java' 카테고리의 다른 글
WebSecurityConfigurerAdapter 가 없는 InMemory 유저 추가 (0) | 2022.09.29 |
---|---|
Spring Boot 구동 시 DB 스크립트를 수행하게 처리 (0) | 2021.01.17 |
application.yml 테스팅 환경 분리 (0) | 2020.05.06 |
메소드 이름으로 쿼리 생성 (0) | 2020.04.25 |
spring boot 내 h2 DB 연결 (0) | 2020.04.06 |