我如何运行一个单一的测试与毕业android

前端之家收集整理的这篇文章主要介绍了我如何运行一个单一的测试与毕业android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用这一行运行测试,但是这会启动所有测试:
./gradlew -DconnectedAndroidTest.single=LandingActivityTests connectedAndroidTest

如何启动单次测试?

您可以通过两个步骤运行单个android测试:

> ./gradlew installDebugAndroidTest
> adb shell am instrument -w -e class com.example.MyInstrumentationTest#testFoo com.example.test / android.support.test.runner.AndroidJUnitRunner
https://developer.android.com/tools/testing/testing_otheride.html

原文链接:https://www.f2er.com/javaschema/282328.html

猜你在找的设计模式相关文章