public enum SerenityJBehaveSystemProperties extends java.lang.Enum<SerenityJBehaveSystemProperties>
| Enum Constant and Description |
|---|
IGNORE_FAILURES_IN_STORIES
Set the JBehave ignoreFailuresInStories options.
|
IGNORE_FAILURES_IN_VIEW
Controls the ignoreFailuresInView flag in JBehave (see http://jbehave.org/reference/stable/running-stories.html).
|
JBEHAVE_STORY_PACKAGES
If the JBehave stories are in a JAR file, we need to provide a semi-colon separated list of packages for
the test runner to look in, e.g.
|
METAFILTER
JBehave meta filters expressions, separated by commas.
|
RESET_STEPS_EACH_SCENARIO
Reset step libraries in JBehave step definitions for each scenario.
|
RESTART_BROWSER_EACH_SCENARIO
Force Serenity to restart the browser before each scenario.
|
STORY_DIRECTORY
Define a directory for the .story files, inside src/test/resources.
|
STORY_TIMEOUT_IN_SECS
How long before the JBehave stories time out (defaults to 300 seconds, or 5 minutes).
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static SerenityJBehaveSystemProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SerenityJBehaveSystemProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerenityJBehaveSystemProperties IGNORE_FAILURES_IN_STORIES
public static final SerenityJBehaveSystemProperties STORY_TIMEOUT_IN_SECS
public static final SerenityJBehaveSystemProperties METAFILTER
public static final SerenityJBehaveSystemProperties RESTART_BROWSER_EACH_SCENARIO
public static final SerenityJBehaveSystemProperties RESET_STEPS_EACH_SCENARIO
public static final SerenityJBehaveSystemProperties STORY_DIRECTORY
public static final SerenityJBehaveSystemProperties JBEHAVE_STORY_PACKAGES
public static final SerenityJBehaveSystemProperties IGNORE_FAILURES_IN_VIEW
public static SerenityJBehaveSystemProperties[] values()
for (SerenityJBehaveSystemProperties c : SerenityJBehaveSystemProperties.values()) System.out.println(c);
public static SerenityJBehaveSystemProperties valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()