Factory method for a Filter
initialized with the passed tagsToInclude
and tagsToExclude
.
Factory method for a Filter
initialized with the passed tagsToInclude
and tagsToExclude
.
an optional Set
of String
tag names to include (i.e., not filter out) when filtering tests
a Set
of String
tag names to exclude (i.e., filter out) when filtering tests
a Boolean
to indicate whether to run nested suites
dynamic tags for the filter
IllegalArgumentException
if tagsToInclude
is defined, but contains an empty set
NullArgumentException
if either tagsToInclude
or tagsToExclude
are null
Factory method for a default Filter
, for which tagsToInclude is
None
,
tagsToExclude
is Set("org.scalatest.Ignore")
, and excludeNestedSuites
is false.
Factory method for a default Filter
, for which tagsToInclude is
None
,
tagsToExclude
is Set("org.scalatest.Ignore")
, and excludeNestedSuites
is false.
a default Filter
This implicit conversion was added in ScalaTest 3.0.0 because the inheritance relationship between Filter and Function2[Set[String], Map[String, Set[String]], List[(String, Boolean)]] was dropped. Please use the apply method that takes a suiteId instead, the one with this signature: def apply(testNames: Set[String], testTags: Map[String, Set[String]], suiteId: String): List[(String, Boolean)].