@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
@Documented
@API(status=MAINTAINED,
since="1.0")
public @interface ExcludePackages
@ExcludePackages
specifies the packages to be
excluded when running a test suite on the JUnit Platform.
Test suites can be run on the JUnit Platform in a JUnit 4 environment via
@RunWith(JUnitPlatform.class)
.
Modifier and Type | Required Element and Description |
---|---|
java.lang.String[] |
value
One or more packages to exclude.
|