安装应用程序和espresso测试apk并在设备上运行



我对android很陌生,也是第一次学习。

在我的android项目中,当我执行 时

gradle build

gradle assembleDebugAndroidTest

我得到应用程序和测试apks

所以我有这两个问题

1)如何将它们安装在特定的连接设备/模拟器上?

2)如何启动在设备上运行的测试?

运行adb devices查看连接的设备:

List of devices attached 
emulator-5554   device
emulator-5556   device

然后,使用ANDROID_SERIAL指定您想要的。

安装:

ANDROID_SERIAL=emulator-5554 gradle installDebug

运行测试:

ANDROID_SERIAL=emulator-5554 gradle connectedAndroidTestDebug

相关内容

  • 没有找到相关文章

最新更新