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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidcopyFrom(JUnitPlatformOptions other) Copies the options from the source options into the current one.excludeEngines(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- 
JUnitPlatformOptionspublic JUnitPlatformOptions()
 
- 
- 
Method Details- 
copyFromCopies the options from the source options into the current one.- Since:
- 8.0
 
- 
includeEnginesThe set of engines to run with.- See Also:
 
- 
includeTagsThe set of tags to run with.- See Also:
 
- 
excludeEnginesThe set of engines to exclude.- See Also:
 
- 
excludeTagsThe set of tags to exclude.- See Also:
 
- 
getIncludeEngines
- 
getIncludeTags
- 
setIncludeEngines
- 
getExcludeEngines
- 
setExcludeEngines
- 
setIncludeTags
- 
getExcludeTags
- 
setExcludeTags
 
-