2013-10-16 68 views
0

Id喜歡生成HTML輸出,就象在說:通過了JUnit入門http://etorreborre.github.io/specs2/guide/org.specs2.guide.Runners.html搖籃和Specs2:Specs2-HtmlOutput

文檔指出「」你可以使用-Dspecs2.commandline屬性,並通過它的html或控制檯值。'

如何在gradle任務中執行此操作。

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

還存在一個問題。我不會在左側獲得導航菜單。每一頁都有一個單獨的菜單,結果

回答

2

只需使用systemProperty whitout的-D

test { 
    systemProperty "specs2.commandline" , "html" 
    systemProperty "specs2.outDir" , "$buildDir/reports/specs2" // to put the reports in the same dir as other gradle reports 
}