Created
August 24, 2017 00:04
-
-
Save 64lines/9b14ba267627262ac96b2faa494eadc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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