package apps; import cucumber.api.CucumberOptions; import cucumber.api.junit.Cucumber; import org.junit.runner.RunWith; /** * Trigger file for Cucumber tests. *

* This file provides default options for cucumber. *

* To override those using maven add -Dcucumber.options="..." to the maven * command line *

* To override those in ant, run:
* JAVA_OPTIONS='-Dcucumber.options="..."' ant target * * @author Paul Bender Copyright 2017 */ @RunWith(Cucumber.class) @CucumberOptions(plugin = {"junit:cucumber-results.xml", "progress", "json:cucumber-results.json"}, features = "java/acceptancetest/features/apps", tags = {"not @webtest", "not @Disabled", "not @Ignore", "not @ignore"}, glue = {"apps"}) public class RunCucumberIT { }