object Filter extends Serializable
Companion object to Filter
offering a default Filter
and a factory method for Filter
s.
- Source
- Filter.scala
- Alphabetic
- By Inheritance
- Filter
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply(tagsToInclude: Option[Set[String]] = None, tagsToExclude: Set[String] = Set(IgnoreTag), excludeNestedSuites: Boolean = false, dynaTags: DynaTags = DynaTags(Map.empty, Map.empty)): Filter
Factory method for a
Filter
initialized with the passedtagsToInclude
andtagsToExclude
.Factory method for a
Filter
initialized with the passedtagsToInclude
andtagsToExclude
.- tagsToInclude
an optional
Set
ofString
tag names to include (i.e., not filter out) when filtering tests- tagsToExclude
a
Set
ofString
tag names to exclude (i.e., filter out) when filtering tests- excludeNestedSuites
a
Boolean
to indicate whether to run nested suites- dynaTags
dynamic tags for the filter
- Exceptions thrown
IllegalArgumentException
iftagsToInclude
is defined, but contains an empty setNullArgumentException
if eithertagsToInclude
ortagsToExclude
are null
- def default: Filter
Factory method for a default
Filter
, for whichtagsToInclude is
None
,tagsToExclude
isSet("org.scalatest.Ignore")
, andexcludeNestedSuites
is false.Factory method for a default
Filter
, for whichtagsToInclude is
None
,tagsToExclude
isSet("org.scalatest.Ignore")
, andexcludeNestedSuites
is false.returns
a default
Filter