如何在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吗?

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...