Class JUnitPlatform
- java.lang.Object
-
- org.junit.runner.Runner
-
- org.junit.platform.runner.JUnitPlatform
-
- All Implemented Interfaces:
org.junit.runner.Describable
,org.junit.runner.manipulation.Filterable
@API(status=DEPRECATED, since="1.8") @Deprecated public class JUnitPlatform extends org.junit.runner.Runner implements org.junit.runner.manipulation.Filterable
Deprecated.since 1.8, in favor of the@Suite
support provided by thejunit-platform-suite-engine
module; to be removed in JUnit Platform 2.0JUnit 4 basedRunner
which runs tests on the JUnit Platform in a JUnit 4 environment.Annotating a class with
@RunWith(JUnitPlatform.class)
allows it to be run with IDEs and build systems that support JUnit 4 but do not yet support the JUnit Platform directly.Please note that test classes and suites annotated with
@RunWith(JUnitPlatform.class)
cannot be executed directly on the JUnit Platform (or as a "JUnit 5" test as documented in some IDEs). Such classes and suites can only be executed using JUnit 4 infrastructure.Consult the various annotations in the
org.junit.platform.suite.api
package for configuration options.If you do not use any configuration annotations from the
org.junit.platform.suite.api
package, you can use this runner on a test class whose programming model is supported on the JUnit Platform — for example, a JUnit Jupiter test class. Note, however, that any test class run with this runner must bepublic
in order to be picked up by IDEs and build tools.When used on a class that serves as a test suite and the
@IncludeClassNamePatterns
annotation is not present, the default include pattern "^(Test.*|.+[.$]Test.*|.*Tests?)$" will be used in order to avoid loading classes unnecessarily (seeClassNameFilter#STANDARD_INCLUDE_PATTERN
).- Since:
- 1.0
- See Also:
SelectClasses
,SelectClasspathResource
,SelectDirectories
,SelectFile
,SelectModules
,SelectPackages
,SelectUris
,IncludeClassNamePatterns
,ExcludeClassNamePatterns
,IncludeEngines
,ExcludeEngines
,IncludePackages
,ExcludePackages
,IncludeTags
,ExcludeTags
,SuiteDisplayName
,UseTechnicalNames
,ConfigurationParameter
-
-
Constructor Summary
Constructors Constructor Description JUnitPlatform(Class<?> testClass)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
filter(org.junit.runner.manipulation.Filter filter)
Deprecated.org.junit.runner.Description
getDescription()
Deprecated.void
run(org.junit.runner.notification.RunNotifier notifier)
Deprecated.
-
-
-
Constructor Detail
-
JUnitPlatform
public JUnitPlatform(Class<?> testClass)
Deprecated.
-
-
Method Detail
-
getDescription
public org.junit.runner.Description getDescription()
Deprecated.- Specified by:
getDescription
in interfaceorg.junit.runner.Describable
- Specified by:
getDescription
in classorg.junit.runner.Runner
-
run
public void run(org.junit.runner.notification.RunNotifier notifier)
Deprecated.- Specified by:
run
in classorg.junit.runner.Runner
-
filter
public void filter(org.junit.runner.manipulation.Filter filter) throws org.junit.runner.manipulation.NoTestsRemainException
Deprecated.- Specified by:
filter
in interfaceorg.junit.runner.manipulation.Filterable
- Throws:
org.junit.runner.manipulation.NoTestsRemainException
-
-