ScalaTest 1.0
|
|
org/scalatest/Filter.scala
]
object
Filter
extends
AnyRefMethod 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
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 teststagsToExclude -
a Set
of String
tag names to exclude (i.e., filter out) when filtering testsNullPointerException -
if either tagsToInclude
or tagsToExclude
are nullIllegalArgumentException -
if tagsToInclude
is defined, but contains an empty set
def
apply : Filter
Filter
initialized with None
for tagsToInclude
and an empty set for tagsToExclude
.tagsToInclude -
an optional Set
of String
tag names to include (i.e., not filter out) when filtering teststagsToExclude -
a Set
of String
tag names to exclude (i.e., filter out) when filtering testsNullPointerException -
if either tagsToInclude
or tagsToExclude
are nullIllegalArgumentException -
if tagsToInclude
is defined, but contains an empty set
ScalaTest 1.0
|
|