我使用Ant在Jenkins上成功运行了一个测试项目。我在控制台输出中看到了测试结果,但是如何生成报告?
答案 0 :(得分:5)
我也使用Jenkins和Espresso。我使用Spoon by Jake Wharton生成报告。看一看!它们干净且易于使用。
答案 1 :(得分:0)
不使用Espresso,可以使用Zutubi的JUnitReportTestRunner轻松完成。然后可以消化该报告,例如通过Jenkins xUnit Plugin
Espresso虽然需要自己的testrunner,但必须基于GoogleInstrumentation。目前,结合使用JUnitReportTestRunner和GoogleInstrumentationTestRunner非常棘手,因为GoogleInstrumentationTestRunner不公开附加测试侦听器的方法。 This google groups post显示了如何从Zutubi项目中附加监听器。