我正在使用不同的类运行多个测试。
例如: adb shell uiautomator runtest PrjoectXYZ.jar -c com.myapp.testautomation.NewUserRegistration
adb shell uiautomator runtest PrjoectXYZ.jar -c com.myapp.testautomation.Login
adb shell uiautomator runtest PrjoectXYZ.jar -c com.myapp.testautomation.Logout
如果我将控制台输出重定向到文本文件,它只给出最后一次运行结果。
有人可以帮助我获得通过和失败计数的整体结果吗?
答案 0 :(得分:0)
在控制台输出中,您应为每个状态为0或1的测试找到“INSTRUMENTATION_STATUS_CODE:”。
0是通行证
1失败了。
所以你想建立自定义的东西?也许你可以查看uiautomator2junit的源代码。这就是我用于报道Jenkins的内容