인프런 커뮤니티 질문&답변

재미사마님의 프로필 이미지
재미사마

작성한 질문수

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

JPA와 DB 설정, 동작확인

JUnit4 library not found in the module

작성

·

1.3K

0

추가도 했는데 모듈이 없다고 뜨는데용 ㅜㅜ

답변 3

1

재미사마님의 프로필 이미지
재미사마
질문자

plugins {
   id 'org.springframework.boot' version '2.4.1'
   id 'io.spring.dependency-management' version '1.0.10.RELEASE'
   id 'java'
}
group = 'jpabook'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
   compileOnly {
      extendsFrom annotationProcessor
   }
}
repositories {
   mavenCentral()
}
dependencies {
   implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
   implementation 'org.springframework.boot:spring-boot-starter-validation'
   implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
   implementation 'org.springframework.boot:spring-boot-starter-web'
   testImplementation 'junit:junit:4.13.1'
   compileOnly 'org.projectlombok:lombok'
   runtimeOnly 'com.h2database:h2'
   annotationProcessor 'org.projectlombok:lombok'
   testImplementation 'org.springframework.boot:spring-boot-starter-test'
//JUnit4 추가
   testImplementation("org.junit.vintage:junit-vintage-engine") {
      exclude group: "org.hamcrest", module: "hamcrest-core"
   }
}
test {
   useJUnitPlatform()
}

0

안녕하세요. 재미사마님, 공식 서포터즈 David입니다.

build.gradle에 문법 오류가 있는 것 같습니다.

강의안 또는 강의내용과 동일하게 작성하셨는지 확인 부탁드립니다.

감사합니다.

재미사마님의 프로필 이미지
재미사마
질문자

testMember는 통과햇는데 initialzationErro가 나요...

@RunWith을 지우시고 다시 시도해보시겠어요?

재미사마님의 프로필 이미지
재미사마
질문자

import org.junit.jupiter.api.Test;

밑에 있는걸로 변경하니깐

import org.junit.Test;

성공 했습니다.

감사합니다!!!!!!!David 님!!

 

 

 

0

재미사마님의 프로필 이미지
재미사마
질문자

에러 메세지가 납니다 ㅠㅠ

재미사마님의 프로필 이미지
재미사마

작성한 질문수

질문하기