我需要从控制台使用gradle执行某些Android测试用例(类或方法)。 它位于 src / androidTest / java / com / example / CertainTest.java 。
Android Studio通过复杂的adb shell am instrument
提供此功能。
是否可以仅通过Gradle调用某些Android测试?
我已阅读有关How to run only one test class on gradle,Test from the Command Line的信息,但这样做的方式非常复杂。
这就是Android Studio推出特定测试类的方式:
Launching Tests
$ adb push /.../app/build/outputs/apk/app-debug.apk /data/local/tmp/com.example.andrii.espressotutorial
$ adb shell pm install -r "/data/local/tmp/com.example.andrii.espressotutorial"
pkg: /data/local/tmp/com.example.andrii.espressotutorial
Success
$ adb push /.../app/build/outputs/apk/app-debug-androidTest.apk /data/local/tmp/com.example.andrii.espressotutorial.test
$ adb shell pm install -r "/data/local/tmp/com.example.andrii.espressotutorial.test"
pkg: /data/local/tmp/com.example.andrii.espressotutorial.test
Success
Running tests
$ adb shell am instrument -w -r -e debug false -e class com.example.andrii.espressotutorial.ExampleInstrumentedTest2 com.example.andrii.espressotutorial.test/android.support.test.runner.AndroidJUnitRunner
Client not ready yet..
Started running tests
Tests ran to completion.
答案 0 :(得分:1)
您可以编写这样的gradle任务:
在主gradle文件中
apply from: "$project.rootDir/tools/script-integration-tests.gradle"
然后在项目目录中创建目录工具和文件script-integration-tests.gradle。然后用这样的测试类名称填充它。
apply plugin: 'com.android.application'
task intergrationTest(type: Exec) {
def adb = android.getAdbExe().toString()
commandLine "$adb", 'shell', 'am', 'instrument', '-w', '-r', '-e',
'debug', 'false', '-e', 'class', 'de.app.id.PullRequestTests',
'de.app.id.app_test.debug.test/android.support.test.runner.AndroidJUnitRunner'
}