Packages

object Filter extends Serializable

Companion object to Filter offering a default Filter and a factory method for Filters.

Source
Filter.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Filter
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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 passed tagsToInclude and tagsToExclude.

    Factory method for a Filter initialized with the passed tagsToInclude and tagsToExclude.

    tagsToInclude

    an optional Set of String tag names to include (i.e., not filter out) when filtering tests

    tagsToExclude

    a Set of String 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 if tagsToInclude is defined, but contains an empty set

    NullArgumentException if either tagsToInclude or tagsToExclude are null

  2. def default: Filter

    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.

    returns

    a default Filter