0

新的 Scala 和 Scalatest 用户。

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

谢谢。

4

2 回答 2

1

对于 html 报告,您可以使用 -h 表示 Runner 或 sbt:

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

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

于 2013-10-03T08:38:18.677 回答
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

于 2016-03-14T20:23:58.240 回答