Annotation Type Suite


@Retention(RUNTIME)
@Target(TYPE)
@Inherited
@Documented
@API(status=EXPERIMENTAL,
     since="1.8")
@Testable
public @interface Suite
@Suite marks class as a test suite on the JUnit Platform.

Selector and filter annotations are used to control the contents of the suite. Additionally configuration can be passed to the suite via the configuration annotations.

When the @IncludeClassNamePatterns annotation is not present, the default include pattern "^(Test.*|.+[.$]Test.*|.*Tests?)$" will be used in order to avoid loading classes unnecessarily (see ClassNameFilter#STANDARD_INCLUDE_PATTERN).

Since:
1.8
See Also:
SelectClasses, SelectClasspathResource, SelectDirectories, SelectFile, SelectModules, SelectPackages, SelectUris, IncludeClassNamePatterns, ExcludeClassNamePatterns, IncludeEngines, ExcludeEngines, IncludePackages, ExcludePackages, IncludeTags, ExcludeTags, SuiteDisplayName, ConfigurationParameter, LauncherDiscoveryRequest, Launcher