规格2:生成HTML报告?

时间:2014-01-30 21:43:48

标签: unit-testing scala sbt specs2 html-rendering

我正在使用specs2生成html测试报告。但是,我按规格得到一个com.company.package.SomeSpec.html。是否可以为我的所有测试生成单页html报告,或至少生成一个index.html,它还链接到其他测试?

1 个答案:

答案 0 :(得分:3)

“用户指南”"How to create an index"

中对此进行了描述
import org.specs2._
import runner.SpecificationsFinder._

class index extends Specification { def is =

  examplesLinks("Example specifications")

  // see the SpecificationsFinder trait for the parameters of the 'specifications' method
  def examplesLinks(t: String) = t.title ^ specifications().map(see)
}