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 {

}

http://toolsqa.com/cucumber/cucumber-tags/

http://toolsqa.com/cucumber/cucumber-hooks/

Last updated

Was this helpful?