天天看點

does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare

在Android進行Junit單元測試的時候報以下錯誤:

[2015-04-06 20:26:21 - adtest] adtest does not specify a android.test.InstrumentationTestRunner instrumentation or does not declare uses-library android.test.runner in its AndroidManifest.xml

是權限配置問題,需要在AndroidManifest.xml 加上2條配置資訊:

<application>
     <uses-library android:name="android.test.runner" />
</application>
    <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.example.adtest"></instrumentation>