IT/자바, 스프링

JUnit으로 테스트코드 실행했는데 no tests 에러 뜰때 (No tests found for given includes)

thesse 2021. 6. 10. 23:24
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
반응형