Class JUnitPlatformOptions
java.lang.Object
org.gradle.api.tasks.testing.TestFrameworkOptions
org.gradle.api.tasks.testing.junitplatform.JUnitPlatformOptions
The JUnit platform specific test options.
- Since:
- 4.6
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexcludeEngines(String... excludeEngines) The set of engines to exclude.excludeTags(String... excludeTags) The set of tags to exclude.includeEngines(String... includeEngines) The set of engines to run with.includeTags(String... includeTags) The set of tags to run with.voidsetExcludeEngines(Set<String> excludeEngines) voidsetExcludeTags(Set<String> excludeTags) voidsetIncludeEngines(Set<String> includeEngines) voidsetIncludeTags(Set<String> includeTags)
-
Constructor Details
-
JUnitPlatformOptions
public JUnitPlatformOptions()
-
-
Method Details
-
includeEngines
The set of engines to run with. Equivalent to invoking EngineFilter.includeEngines.- See Also:
-
includeTags
The set of tags to run with. Equivalent to invoking TagFilter.includeTags.- See Also:
-
excludeEngines
The set of engines to exclude. Equivalent to invoking EngineFilter.excludeEngines.- See Also:
-
excludeTags
The set of tags to exclude. Equivalent to invoking TagFilter.excludeTags.- See Also:
-
getIncludeEngines
-
getIncludeTags
-
setIncludeEngines
-
getExcludeEngines
-
setExcludeEngines
-
setIncludeTags
-
getExcludeTags
-
setExcludeTags
-