@Retention(value=RUNTIME)
@Target(value=METHOD)
@Documented
public @interface AfterClass
Modifier and Type | Optional Element and 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.
|
public abstract boolean enabled
public abstract java.lang.String[] groups
public abstract java.lang.String[] dependsOnGroups
public abstract java.lang.String[] dependsOnMethods
If some of these methods have been overloaded, all the overloaded versions will be run.
public abstract boolean alwaysRun
public abstract boolean inheritGroups