ScalaTest 1.0
|
|
org/scalatest/events/TestIgnored.scala
]
object
TestIgnored
extends
AnyRefTestIgnored
event, which contains overloaded factory methods
and an extractor method to facilitate pattern matching on TestIgnored
objects.
All factory methods throw NullPointerException
if any of the passed values are null
.
Method Summary | |
def
|
apply
(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String) : TestIgnored
Constructs a new
TestIgnored event with the passed parameters, passing None for
formatter , None as the payload ,
the current threads name as threadname , and the current time as timeStamp . |
def
|
apply
(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String, formatter : scala.Option[Formatter], payload : scala.Option[Any]) : TestIgnored
Constructs a new
TestIgnored event with the passed parameters, passing the current thread's
name as threadname and the current time as timeStamp . |
def
|
apply
(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String, formatter : scala.Option[Formatter]) : TestIgnored
Constructs a new
TestIgnored event with the passed parameters, passing None as the
payload , the current threads name as threadname , and the current time as timeStamp . |
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(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String, formatter : scala.Option[Formatter], payload : scala.Option[Any]) : TestIgnored
TestIgnored
event with the passed parameters, passing the current thread's
name as threadname
and the current time as timeStamp
.ordinal -
an Ordinal
that can be used to place this event in order in the context of other events reported during the same runsuiteName -
the name of the suite containing the test that was ignoredsuiteClassName -
an optional fully qualifed Suite
class name containing the test that was ignoredtestName -
the name of the test that was ignoredformatter -
an optional formatter that provides extra information that can be used by reporters in determining how to present this event to the userpayload -
an optional object that can be used to pass custom information to the reporter about the TestIgnored
eventNullPointerException -
if any of the passed values are null
TestIgnored
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String, formatter : scala.Option[Formatter]) : TestIgnored
TestIgnored
event with the passed parameters, passing None
as the
payload
, the current threads name as threadname
, and the current time as timeStamp
.ordinal -
an Ordinal
that can be used to place this event in order in the context of other events reported during the same runsuiteName -
the name of the suite containing the test that was ignoredsuiteClassName -
an optional fully qualifed Suite
class name containing the test that was ignoredtestName -
the name of the test that was ignoredformatter -
an optional formatter that provides extra information that can be used by reporters in determining how to present this event to the userNullPointerException -
if any of the passed values are null
TestIgnored
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], testName : java.lang.String) : TestIgnored
TestIgnored
event with the passed parameters, passing None
for
formatter
, None
as the payload
,
the current threads name as threadname
, and the current time as timeStamp
.ordinal -
an Ordinal
that can be used to place this event in order in the context of other events reported during the same runsuiteName -
the name of the suite containing the test that was ignoredsuiteClassName -
an optional fully qualifed Suite
class name containing the test that was ignoredtestName -
the name of the test that was ignoredNullPointerException -
if any of the passed values are null
TestIgnored
instance initialized with the passed and default values
ScalaTest 1.0
|
|