Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bcarun/de7f7b643190da0af89ff3137de131ae to your computer and use it in GitHub Desktop.
Save bcarun/de7f7b643190da0af89ff3137de131ae to your computer and use it in GitHub Desktop.
To run cucumber test
package com.arun.cucumber.hello.bdd;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
/**
* To run cucumber test.
*/
@RunWith(Cucumber.class)
@CucumberOptions(features = "classpath:features", plugin = {"pretty", "json:target/cucumber-report.json"})
public class CucumberTest {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment