SpringBoot Junit5 설정 관련 (gradle)
매번 스터디 하면서 프로젝트 생성 시 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 없다고 에러 발생..) /..
Study/Java
2020. 12. 12. 01:51