Runner and annotations for configuring and executing tests on the
JUnit Platform in a JUnit 4 environment.See: Description
| Class | Description |
|---|---|
| JUnitPlatform |
JUnit 4 based
Runner which runs tests on the JUnit Platform in a
JUnit 4 environment. |
| Annotation Type | Description |
|---|---|
| ExcludeEngines |
@ExcludeEngines specifies the IDs of
TestEngines to be excluded
when running a test suite via @RunWith(JUnitPlatform.class). |
| ExcludeTags |
@ExcludeTags specifies the tags to be excluded
when running a test suite via @RunWith(JUnitPlatform.class). |
| 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). |
| IncludeEngines |
@IncludeEngines specifies the IDs of
TestEngines to be included
when running a test suite via @RunWith(JUnitPlatform.class). |
| IncludeTags |
@IncludeTags specifies the tags to be included
when running a test suite via @RunWith(JUnitPlatform.class). |
| SelectClasses |
@SelectClasses specifies the classes to select when running
a test suite via @RunWith(JUnitPlatform.class). |
| SelectPackages |
@SelectPackages specifies the names of packages to select
when running a test suite via @RunWith(JUnitPlatform.class). |
| UseTechnicalNames |
@UseTechnicalNames specifies that technical names should be
used instead of display names when running a test suite via
@RunWith(JUnitPlatform.class). |
Runner and annotations for configuring and executing tests on the
JUnit Platform in a JUnit 4 environment.