新的 Scala 和 Scalatest 用户。
我已经使用 Scalatest 库编写了一些测试并运行了它。如何以 html(或其他)格式获取测试报告的转储?
谢谢。
对于 html 报告,您可以使用 -h 表示 Runner 或 sbt:
http://www.artima.com/docs-scalatest-2.0.RC1/#org.scalatest.tools.Runner $
HTML 报告需要 ScalaTest 2.0。如果您使用的是 Ant 任务或 Maven 插件,那么它也有特殊的语法。你是如何运行你的测试的?
为了获得报告,这个配置节对我有用:
<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