我的项目包含多个测试类,每个类都包含一些测试方法。我可以使用命令行运行所有测试
gradlew testDebugUnitTest
Is there any gradlew command to run specific testMethod from a class?
Is there any gradlew command to run all test mmethods from a specific class?
我的项目包含多个测试类,每个类都包含一些测试方法。我可以使用命令行运行所有测试
gradlew testDebugUnitTest
Is there any gradlew command to run specific testMethod from a class?
Is there any gradlew command to run all test mmethods from a specific class?
这是一个 Foo2 类,而 bar3 是您要测试的特定方法。这取自Google 开发人员 Junit 单元测试命令行文档
$ adb shell am instrument -w \
> -e class com.android.demo.app.tests.Foo2#bar3 \
> com.android.demo.app.tests/android.support.test.runner.AndroidJUnitRunner