码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-04-06 21:53:10      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:instrument   android   declare   单元测试   library   

在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>

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

标签:instrument   android   declare   单元测试   library   

原文地址:http://blog.csdn.net/ldl22847/article/details/44905535

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!