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 JUnitPlatformOptionsexcludeEngines(String... excludeEngines)The set of engines to exclude.JUnitPlatformOptionsexcludeTags(String... excludeTags)The set of tags to exclude.Set<String>getExcludeEngines()Set<String>getExcludeTags()Set<String>getIncludeEngines()Set<String>getIncludeTags()JUnitPlatformOptionsincludeEngines(String... includeEngines)The set of engines to run with.JUnitPlatformOptionsincludeTags(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)
-
-
-
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
-
-