我制作了自己的android测试套装来测试一些功能。 当我尝试在CTS控制台中运行此测试时,我收到此错误:
Test failed to run. Test run failed due to : null
在ADB日志中,我得到了这个日志:
TestLoader: Could not find class:"com.xxx.xxxxxx"
我应该在清单中定义ApplicationTestCase类吗?
答案 0 :(得分:2)
我在清单中的应用程序标记中插入了这一行,它修复了问题:
<uses-library android:name="android.test.runner" />