3
방금 Kotlin
으로 새 Android 애플리케이션을 만들었습니다.새로운 Android Kotlin 프로젝트에서 계측 된 테스트를 실행하지 못했습니다.
:
Class not found: "oussaki.com.pos.ExampleInstrumentedTest"Empty test suite.
를이 내가 실행하기 위해 노력하고있어 계측 테스트 클래스 :
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getTargetContext()
assertEquals("oussaki.com.pos", appContext.packageName)
}
}
Logcat 장치를 확인하고 여기에 게시하십시오. 보통 이것은 테스트 러너 자체의 충돌 때문에 발생합니다. –
이 오류는 기기와 관련이 없으며 Kotlin 및 AndroidTests와 관련된 문제이므로 로그가 없습니다. – Oussaki