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