org.scalatest

object Filter

[source: org/scalatest/Filter.scala]

object Filter
extends AnyRef
Method Summary
def apply (tagsToInclude : scala.Option[scala.collection.immutable.Set[java.lang.String]], tagsToExclude : scala.collection.immutable.Set[java.lang.String]) : Filter
Factory method for a Filter initialized with the passed tagsToInclude and tagsToExclude.
def apply : Filter
Factory method for a Filter initialized with None for tagsToInclude and an empty set for tagsToExclude.
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def apply(tagsToInclude : scala.Option[scala.collection.immutable.Set[java.lang.String]], tagsToExclude : scala.collection.immutable.Set[java.lang.String]) : Filter
Factory method for a Filter initialized with the passed tagsToInclude and tagsToExclude.
Parameters
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
Throws
NullPointerException - if either tagsToInclude or tagsToExclude are null
IllegalArgumentException - if tagsToInclude is defined, but contains an empty set

def apply : Filter
Factory method for a Filter initialized with None for tagsToInclude and an empty set for tagsToExclude.
Parameters
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
Throws
NullPointerException - if either tagsToInclude or tagsToExclude are null
IllegalArgumentException - if tagsToInclude is defined, but contains an empty set


Copyright (C) 2001-2009 Artima, Inc. All rights reserved.