Class JUnitPlatformOptions
- java.lang.Object
-
- org.gradle.api.tasks.testing.TestFrameworkOptions
-
- org.gradle.api.tasks.testing.junitplatform.JUnitPlatformOptions
-
@Incubating public class JUnitPlatformOptions extends TestFrameworkOptions
The JUnit platform specific test options.- Since:
- 4.6
- See Also:
- JUnit 5 User Guide
-
-
Constructor Summary
Constructors Constructor Description JUnitPlatformOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JUnitPlatformOptions
excludeEngines(String... excludeEngines)
The set of engines to exclude.JUnitPlatformOptions
excludeTags(String... excludeTags)
The set of tags to exclude.Set<String>
getExcludeEngines()
Set<String>
getExcludeTags()
Set<String>
getIncludeEngines()
Set<String>
getIncludeTags()
JUnitPlatformOptions
includeEngines(String... includeEngines)
The set of engines to run with.JUnitPlatformOptions
includeTags(String... includeTags)
The set of tags to run with.void
setExcludeEngines(Set<String> excludeEngines)
void
setExcludeTags(Set<String> excludeTags)
void
setIncludeEngines(Set<String> includeEngines)
void
setIncludeTags(Set<String> includeTags)
-
-
-
Method Detail
-
includeEngines
public JUnitPlatformOptions includeEngines(String... includeEngines)
The set of engines to run with. Equivalent to invoking EngineFilter.includeEngines.- See Also:
- Test Engine
-
includeTags
public JUnitPlatformOptions includeTags(String... includeTags)
The set of tags to run with. Equivalent to invoking TagFilter.includeTags.- See Also:
- Tagging and Filtering
-
excludeEngines
public JUnitPlatformOptions excludeEngines(String... excludeEngines)
The set of engines to exclude. Equivalent to invoking EngineFilter.excludeEngines.- See Also:
- Test Engine
-
excludeTags
public JUnitPlatformOptions excludeTags(String... excludeTags)
The set of tags to exclude. Equivalent to invoking TagFilter.excludeTags.- See Also:
- Tagging and Filtering
-
-