我是靠谱客的博主 大意奇迹,最近开发中收集的这篇文章主要介绍Android Studio 执行Robotium测试提示No tests were found,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


1、测试类上需要加入


@RunWith(AndroidJUnit4.class)

2、build.gradle
修改红色内容
android {
compileSdkVersion 24

buildToolsVersion "24.0.3"

defaultConfig {


minSdkVersion 19

targetSdkVersion 24

versionCode 1

versionName "1.0"

testInstrumentationRunner "android.test.InstrumentationTestRunner"

}
3.修改run configurations
菜单栏Run-Edit Configurations-Android Tests-Test类-Specific instrument runner(optional)
修改
android.support.test.runner.AndroidJUnitRunner
android.test.InstrumentationTestRunner

再次执行即可

最后

以上就是大意奇迹为你收集整理的Android Studio 执行Robotium测试提示No tests were found的全部内容,希望文章能够帮你解决Android Studio 执行Robotium测试提示No tests were found所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部