See: Description
| Annotation Type | Description |
|---|---|
| ConfigurationParameter | |
| ConfigurationParameters |
@ConfigurationParameters is a container for one or more
@ConfigurationParameter declarations. |
| DisableParentConfigurationParameters |
Disable parent configuration parameters.
|
| ExcludeClassNamePatterns |
@ExcludeClassNamePatterns specifies regular expressions that are used
to match against fully qualified class names when running a test suite on the
JUnit Platform. |
| ExcludeEngines |
@ExcludeEngines specifies the IDs of
TestEngines to be excluded
when running a test suite on the JUnit Platform. |
| ExcludePackages |
@ExcludePackages specifies the packages to be
excluded when running a test suite on the JUnit Platform. |
| ExcludeTags |
@ExcludeTags specifies the
tags or tag expressions to be excluded when running a
test suite on the JUnit Platform. |
| IncludeClassNamePatterns |
@IncludeClassNamePatterns specifies regular expressions that are used
to match against fully qualified class names when running a test suite on the
JUnit Platform. |
| IncludeEngines |
@IncludeEngines specifies the IDs of
TestEngines to be included
when running a test suite on the JUnit Platform. |
| IncludePackages |
@IncludePackages specifies the packages to be
included when running a test suite on the JUnit Platform. |
| IncludeTags |
@IncludeTags specifies the
tags or tag expressions to be included when running a
test suite on the JUnit Platform. |
| SelectClasses |
@SelectClasses specifies the classes to select when running
a test suite on the JUnit Platform. |
| SelectClasspathResource |
@SelectClasspathResource is a repeatable
annotation that specifies a classpath resource to select when running
a test suite on the JUnit Platform. |
| SelectClasspathResources |
@SelectClasspathResources is a container for one or more
@SelectClasspathResource declarations. |
| SelectDirectories |
@SelectDirectories specifies the directories to select when
running a test suite on the JUnit Platform. |
| SelectFile |
@SelectFile is a repeatable annotation that
specifies a file to select when running a test suite on the JUnit
Platform. |
| SelectFiles |
@SelectFiles is a container for one or more
@SelectFile declarations. |
| SelectMethod |
@SelectMethod is a repeatable annotation that
specifies a method to select when running a test suite on the JUnit
Platform. |
| SelectMethods |
@SelectMethods is a container for one or more
@SelectMethod declarations. |
| SelectModules |
@SelectModules specifies the modules to select when running
a test suite on the JUnit Platform. |
| SelectPackages |
@SelectPackages specifies the names of packages to select
when running a test suite on the JUnit Platform. |
| SelectUris |
@SelectUris specifies the URIs to select when running a test
suite on the JUnit Platform. |
| Suite |
@Suite marks a class as a test suite on the JUnit Platform. |
| SuiteDisplayName |
@SuiteDisplayName is used to declare a custom
display name for the annotated test class that is executed as a test suite
on the JUnit Platform. |
| UseTechnicalNames | Deprecated
since 1.8, in favor of the
@Suite support provided by
the junit-platform-suite-engine module; to be removed in JUnit Platform 2.0 |
Test suites can be run on the JUnit Platform in a JUnit 4 environment via
@RunWith(JUnitPlatform.class) with the junit-platform-runner.
Test suites can be run on the JUnit Platform in a JUnit 5 environment via
@Suite with the junit-platform-suite-engine.