@Retention(RUNTIME)
@Target(METHOD)
@Documented
public @interface BeforeTest
| Modifier and Type | Optional Element | Description |
|---|---|---|
boolean |
alwaysRun |
For before methods (beforeSuite, beforeTest, beforeTestClass and
beforeTestMethod, but not beforeGroups):
If set to true, this configuration method will be run
regardless of what groups it belongs to.
|
java.lang.String[] |
dependsOnGroups |
The list of groups this method depends on.
|
java.lang.String[] |
dependsOnMethods |
The list of methods this method depends on.
|
java.lang.String |
description |
The description for this method.
|
boolean |
enabled |
Whether methods on this class/method are enabled.
|
java.lang.String[] |
groups |
The list of groups this class/method belongs to.
|
boolean |
inheritGroups |
If true, this @Configuration method will belong to groups specified in the
@Test annotation on the class (if any).
|
long |
timeOut |
The maximum number of milliseconds this method should take.
|
boolean enabled
java.lang.String[] dependsOnGroups
java.lang.String[] dependsOnMethods
boolean alwaysRun
boolean inheritGroups