IncludeClassNamePatterns.@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited @Documented @API(value=Deprecated) @Deprecated 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,
ClassNameFilter.includeClassNamePatterns(java.lang.String...)public abstract String value
Defaults to "^.*Tests?$" which matches against class names
ending in Test or Tests (in any package).