当前位置: 代码迷 >> 综合 >> does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-l
  详细解决方案

does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-l

热度:66   发布时间:2023-12-22 11:18:03.0

Android junit单元测试

错误原信息:

junittest does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-library android.test.runner in its AndroidManifest.xml


分析:

在 AndroidManifest.xml文件中没有配置

<uses-library android:name="android.test.runner" />

注意上面这句话的配置在<application></application>里面!

  相关解决方案