如何使用Scalatest生成HTML报告?

时间:2013-10-03 04:58:40

标签: scala reporting scalatest

新的Scala和Scalatest用户。

我已经使用Scalatest库编写了一些测试,并且我已经运行了它。如何以html(或其他)格式转储测试报告?

THX。

2 个答案:

答案 0 :(得分:1)

对于html报告,您将-h用于Runner或sbt:

http://www.artima.com/docs-scalatest-2.0.RC1/#org.scalatest.tools.Runner $

HTML报告需要ScalaTest 2.0。如果您正在使用Ant任务或Maven插件,那么它也有特殊的语法。你是如何运行测试的?

答案 1 :(得分:0)

为了获得报告,这个配置节为我做了诀窍:

<plugin>
  <groupId>org.scalatest</groupId>
  <artifactId>scalatest-maven-plugin</artifactId>
  <version>1.0</version>
  <configuration>
    <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
    <junitxml>.</junitxml>
    <filereports>TestSuite.txt</filereports>
  </configuration>
  <executions>

请参阅:http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin