@Retention(value=RUNTIME) @Target(value=METHOD) public @interface AfterDiscovery
@BeforeDiscovery, methods annotated with this
annotation are run just after the discovery ran.| Modifier and Type | Optional Element and Description |
|---|---|
int |
order
If order of the
@AfterDiscovery 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 @AfterDiscovery method applies to all test methods.
public abstract int order
@AfterDiscovery methods is significant, you can order them
by using this parameter.
Zero or negative value means no significant order required.
Copyright © 2008-2013 Red Hat, Inc.. All Rights Reserved.