如何在xml报告中获得最大的测试运行时间

前端之家收集整理的这篇文章主要介绍了如何在xml报告中获得最大的测试运行时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们使用ScalaTest运行测试并在Jenkins中显示结果。它工作得很好,但由于某种原因,Scalatest不会填充测试运行时。

我正在添加如下测试选项:

Tests.Argument("-oD","-u","target/test-reports")

但XML文件没有时间(见时间总是0):

<testcase classname="beekeeper.warehouse.jdbc.JDBCWarehouseTest" name="testListTables" time="0.0">
</testcase>
<testcase classname="beekeeper.warehouse.jdbc.JDBCWarehouseTest" name="testGetDatabases" time="0.0">
</testcase>
<testcase classname="beekeeper.warehouse.jdbc.JDBCWarehouseTest" name="testSchema" time="0.0">
</testcase>

我需要做别的事情来报告这个,还是不支持

感谢任何帮助

我尝试使用来自 http://www.typesafe.com/activator/template/hello-scala的示例hello-scala,它使用scalatest 2.2.4和Scala 2.11.6
使用激活器我可以看到测试运行时间

< testcase classname =“HelloSpec”name =“Hello should have tests”time =“0.037”>

你能告诉我们你正在使用什么样的构建工具,还可以分享你的build.sbt吗?

猜你在找的XML相关文章