cucumber/ options
http://toolsqa.com/cucumber/cucumber-options/
http://toolsqa.com/cucumber/junit-test-runner-class/

import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "Feature"
,glue={"stepDefinition"}
,dryRun = true
)
public class TestRunner {
}
Last updated
Was this helpful?