本文介绍了Gradle:如何为课堂运行仪器测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在 Android Studio 中运行仪器测试,运行配置定义如下(不要介意警告):
I'm running instrumentation test in Android Studio with Run Configuration defined as below (don't mind warning):
所以这是为特定类调用测试服.我想如何使用命令行实现这一点,我想使用 ./gradlew 命令?
So this is invoking test suit for a specific class. How can I achieve this with command line, I guess using ./gradlew command ?
推荐答案
如 AndroidTestingBlueprint 中所述 你可以使用 android.testInstrumentationRunnerArguments.class
属性:
As stated in the AndroidTestingBlueprint you can use the android.testInstrumentationRunnerArguments.class
property:
./gradlew app:connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=com.example.android.testing.blueprint.ui.espresso.EspressoTest
这篇关于Gradle:如何为课堂运行仪器测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!