@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited @Documented @API(value=Maintained) public @interface IncludeClassNamePattern
@IncludeClassNamePattern
specifies a regular expression that is used
to match against fully qualified class names when running a test suite via
@RunWith(JUnitPlatform.class)
.
If the fully qualified name of a class matches against the pattern, the class will be included in the test plan.
JUnitPlatform
,
ClassFilter.includeClassNamePattern(java.lang.String)
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
value
Regular expression used to match against fully qualified class names.
|