300x250
반응형
문제
@RunWith(SpringRunner.class)
@SpringBootTest
public class UserApiDocumentation {
...
@Test
public void testRead() throws Exception {
this.mockMvc.perform(get("/api/user/{id}", 1))
....
}
}
이렇게 테스트 코드를 짜고 실행했는데
테스트를 찾을 수 없다고 나온다....
해결
(인텔리제이 커뮤니티버전 기준)
좌측상단 File 메뉴 > settngs > Build, Execution, Deployment > Gradle
여기에서 Run test using을 Gradle에서 IntelliJ IDEA로 변경
failed 떴지만 어쨌든 테스트는 돌아갔다!
참고
https://stackoverflow.com/questions/55405441/intelij-2019-1-update-breaks-junit-tests
300x250
반응형
'IT > 자바, 스프링' 카테고리의 다른 글
Controller Advice로 Exception 처리하기 (0) | 2021.08.05 |
---|---|
no Creators, like default constructor, exist 에러 (0) | 2021.08.04 |
자바 에러 non-static method cannot be referenced from a static context (0) | 2021.06.10 |
jpa 어노테이션 (0) | 2021.02.02 |
intellij에서 maven도 안뜨고 run도 안될때 (0) | 2021.01.11 |