@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
@Documented
@API(status=STABLE,
since="1.10")
@Repeatable(value=SelectClasspathResources.class)
public @interface SelectClasspathResource
@SelectClasspathResource is a repeatable
annotation that specifies a classpath resource to select when running
a test suite on the JUnit Platform.| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value
The name of the classpath resource to select.
|
| Modifier and Type | Optional Element and Description |
|---|---|
int |
column
The column number within the classpath resource; ignored if the line number
is ignored or if not greater than zero.
|
int |
line
The line number within the classpath resource; ignored if not greater than
zero.
|