新的Scala和Scalatest用户。
我已经使用Scalatest库编写了一些测试,并且我已经运行了它。如何以html(或其他)格式转储测试报告?
THX。
答案 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