forgot to add help file

This commit is contained in:
Kingsley Hendrickse 2012-04-14 20:43:48 +01:00
parent 9d23648c31
commit c2656ded76
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<p><b>Publishes cucumber-jvm html results</b></p>
<p>This plugin requires that you use <b>cucumber-jvm</b> and run using <b>JUnit</b> as well as setting cucumber to generate a <b>json</b> report (<i>you <b>must</b> give the json file the suffix <b>.json</b>). The plugin
uses the json report to produce html reports that are available from jenkins on the build page after a build has run.
</p>
<pre>
package net.masterthought.example;
import cucumber.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@Cucumber.Options(format = {"pretty", "html:target/cucumber", "json:target/cucumber.json"})
public class ATMTest {
}
</pre>