Skip to content

Instantly share code, notes, and snippets.

@Romeh
Created December 3, 2017 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Romeh/cbb0367f3186779513521394ad0a47e8 to your computer and use it in GitHub Desktop.
Save Romeh/cbb0367f3186779513521394ad0a47e8 to your computer and use it in GitHub Desktop.
/**
* the main class for cucumber where you configure where the features are defined and which formats of reports needed to be generated
*/
@RunWith(Cucumber.class)
@CucumberOptions(features = {"src/test/resources/features"}, format = {"pretty", "html:target/reports/cucumber/html",
"json:target/cucumber.json", "usage:target/usage.jsonx", "junit:target/junit.xml"})
public class CucumberIntegrationIT {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment