No instrumentation runner found for the launch, using android.test.

如果在进行android app测试的时候发现控制台:报:No instrumentation runner found for the launch, using android.test.,明明在AndroidManifest.xml中加入了

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


<instrumentation
        android:name="android.test.InstrumentationTestRunner"
        android:label="test for my app"

        android:targetPackage="com.ht.db" />


最后我是这样解决问题的

1.在工程名字上点击右键,选择properties  

2.在Run/Debug setting 删除所有的 launch configuration for ....

清空所有选项就OK啦~!

你可能感兴趣的:(android,测试)