No instrumentation runner InstrumentationTestRunner 的解决方法

在进行单元测试时出现如下警告:

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

虽然不影响程序的运行,但也想把它解决了,吹毛求疵哈~~

只需要做如下配置就可以了:

1.在工程名字上点击右键,选择properties  
2.在Run/Debug setting中选择要运行的工程名字,点击右边的Edit,会进入下面的界面,在 instrumentation runner后面的下拉列表中选择android.test.InstrumentationTestRunner  

3.重新运行该测试单元。 

就不会出现上面的警告了

 

据说出现警告的原因是因为模拟器不能记住Androidmanifest的配置,在运行时需要重新设置运行配置。

 

 

你可能感兴趣的:(No instrumentation runner InstrumentationTestRunner 的解决方法)