IT/자바, 스프링

잘 되던 import가 갑자기 안될때 (cannot resolve symbol 'runwith')

thesse 2021. 8. 10. 09:33
300x250
반응형

코드나 설정이 아닌 intellij ide의 문제로 종종 발생한다는 오류...

project clean 하라, invalid cache / restart하라, 그래들 리프레시하라 등등

나오는 해결책들을 모두 해봤지만 안됨

 

내경우는 멀쩡하게 잘 되던 테스트클래스에서 

import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;

등 junit 라이브러리가 모조리 먹통됨

 

결국 그래들에 수동으로 박아서 해결

 

build.gradle

dependencies {
	...
	testImplementation 'junit:junit:4.12'
	...
}

 

 

그래들은 여기 참조

https://mvnrepository.com/artifact/junit/junit/4.13

300x250
반응형