관리 메뉴

나만을 위한 블로그

[Android] 단위 테스트 실행 시 No tests found for given includes 에러 해결 본문

Android

[Android] 단위 테스트 실행 시 No tests found for given includes 에러 해결

참깨빵위에참깨빵 2023. 3. 15. 18:06
728x90
반응형

단위 테스트를 실행하니 제목의 저 문구가 출력되고 테스트 결과는 녹색이지만 "Test events were not received" 라는 문구가 나왔다.

해결법을 찾아보니 아주 단순했다. 테스트를 실행하려면 @Test 어노테이션을 붙여야 하는데 이 어노테이션의 import문을 확인해 본다. 아마 이렇게 되어 있을 수 있다.

 

import org.junit.Test

 

이것을 아래의 import문으로 바꾼다.

 

import org.junit.jupiter.api.Test

 

이렇게 바꾸고 실행하니 테스트가 정상 작동했다.

 

 

참고한 사이트)

 

https://stackoverflow.com/questions/30474767/no-tests-found-for-given-includes-error-when-running-parameterized-unit-test-in

 

No tests found for given includes Error, when running Parameterized Unit test in Android Studio

I have tried to run Parameterized Unit Tests in Android Studio, as shown below: import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; import org.junit.Test;

stackoverflow.com

 

반응형
Comments