api / org.gradle.api.tasks.testing.junit / JUnitOptions

JUnitOptions

open class JUnitOptions : TestFrameworkOptions

The JUnit specific test options.

Constructors

<init>

JUnitOptions()

The JUnit specific test options.

Functions

excludeCategories

open fun excludeCategories(vararg excludeCategories: String): JUnitOptions

getExcludeCategories

open fun getExcludeCategories(): MutableSet<String>

The set of categories to exclude.

getIncludeCategories

open fun getIncludeCategories(): MutableSet<String>

The set of categories to run.

includeCategories

open fun includeCategories(vararg includeCategories: String): JUnitOptions

setExcludeCategories

open fun setExcludeCategories(excludeCategories: MutableSet<String>): Unit

The set of categories to exclude.

setIncludeCategories

open fun setIncludeCategories(includeCategories: MutableSet<String>): Unit

The set of categories to run.