@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface SuiteClasses
WildcardPatternSuite
and the ParallelSuite runner. It allows you to specify
the children classes of a test suite class with a
wildcard pattern.| Modifier and Type | Required Element and Description |
|---|---|
String[] |
value
Wildcard pattern(s)
relative to the directory containing the actual test suite class
annotated with
@RunWith(WildcardPatternSuite.class) or
@RunWith(ParallelSuite.class),
a wildcard pattern must not start with a '/' character,
and must end with ".class" (unless it starts
with a '!' |
public abstract String[] value
@RunWith(WildcardPatternSuite.class) or
@RunWith(ParallelSuite.class),
a wildcard pattern must not start with a '/' character,
and must end with ".class" (unless it starts
with a '!' character, which means matching class files are excluded).Copyright © 2017. All rights reserved.