Class JUnitOptions
java.lang.Object
org.gradle.api.tasks.testing.TestFrameworkOptions
org.gradle.api.tasks.testing.junit.JUnitOptions
The JUnit specific test options.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidcopyFrom(JUnitOptions other) Copies the options from the source options into the current one.excludeCategories(String... excludeCategories) The set of categories to exclude.The set of categories to run.includeCategories(String... includeCategories) voidsetExcludeCategories(Set<String> excludeCategories) The set of categories to exclude.voidsetIncludeCategories(Set<String> includeCategories) The set of categories to run.
- 
Constructor Details- 
JUnitOptionspublic JUnitOptions()
 
- 
- 
Method Details- 
copyFromCopies the options from the source options into the current one.- Since:
- 8.0
 
- 
includeCategories
- 
excludeCategories
- 
getIncludeCategoriesThe set of categories to run.
- 
setIncludeCategoriesThe set of categories to run.
- 
getExcludeCategoriesThe set of categories to exclude.
- 
setExcludeCategoriesThe set of categories to exclude.
 
-