|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Retention(value=RUNTIME) @Target(value=METHOD) public @interface BeforeDiscovery
Marks a method as to be run before the discovery is executed on a test method.
| Optional Element Summary | |
|---|---|
int |
order
If order of the @BeforeDiscovery methods is significant, you can order them
by using this parameter. |
String[] |
testMethods
This list of test methods the method annotated with this annotation applies to. |
public abstract String[] testMethods
By default the @BeforeDiscovery method applies to all test methods.
public abstract int order
@BeforeDiscovery methods is significant, you can order them
by using this parameter.
Zero or negative value means no significant order required.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||