Skip to content

Instantly share code, notes, and snippets.

@64lines
Created August 24, 2017 00:04
Show Gist options
  • Select an option

  • Save 64lines/9b14ba267627262ac96b2faa494eadc8 to your computer and use it in GitHub Desktop.

Select an option

Save 64lines/9b14ba267627262ac96b2faa494eadc8 to your computer and use it in GitHub Desktop.
package dummy;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions (plugin ={"pretty", "html:TestResults"}, junit = {"--filename-compatible-names"}, features = "dummy/")
public class RunCukesTest {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment