0

我想通过 JUnit-Runner生成 HTML 输出,如:http ://etorreborre.github.io/specs2/guide/org.specs2.guide.Runners.html

该文档指出“您可以使用 -Dspecs2.commandline 属性并将其传递给 html 或控制台值。”

如何在 gradle 任务中做到这一点。

是的,我知道 gradle 可以生成 HTML-Test-Reports,但我需要一个 specs2 可以生成。

一个问题仍然存在。我没有在左侧获得导航菜单。每个页面都有一个单独的菜单和结果

4

1 回答 1

2

只需使用没有 -D 的 systemProperty

test {
    systemProperty "specs2.commandline" , "html"
    systemProperty "specs2.outDir"  ,   "$buildDir/reports/specs2" // to put the reports in the same dir as other gradle reports
}
于 2013-10-16T13:13:33.060 回答