ScalaTest 1.0
|
|
org/scalatest/events/RunStarting.scala
]
object
RunStarting
extends
AnyRefRunStarting
event, which contains overloaded factory methods
and an extractor method to facilitate pattern matching on RunStarting
objects.
All factory methods throw NullPointerException
if any of the passed values are null
, and IllegalArgumentException
if
testCount
is less than zero.
Method Summary | |
def
|
apply
(ordinal : Ordinal, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any], formatter : scala.Option[Formatter]) : RunStarting
Constructs a new
RunStarting event with the passed parameters, passing None as the
payload , the current threads name as threadname ,
and the current time as timeStamp . |
def
|
apply
(ordinal : Ordinal, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any]) : RunStarting
Constructs a new
RunStarting 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, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any], formatter : scala.Option[Formatter], payload : scala.Option[Any]) : RunStarting
Constructs a new
RunStarting event with the passed parameters, passing the current thread's
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, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any], formatter : scala.Option[Formatter], payload : scala.Option[Any]) : RunStarting
RunStarting
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 runtestCount -
the number of tests expected during this runconfigMap -
a Map
of key-value pairs that can be used by custom Reporter
sformatter -
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 RunStarting
eventIllegalArgumentException -
if testCount
is less than zero.NullPointerException -
if any of the passed values are null
RunStarting
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any], formatter : scala.Option[Formatter]) : RunStarting
RunStarting
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 runtestCount -
the number of tests expected during this runconfigMap -
a Map
of key-value pairs that can be used by custom Reporter
sformatter -
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
RunStarting
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, testCount : Int, configMap : scala.collection.immutable.Map[java.lang.String, Any]) : RunStarting
RunStarting
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 runtestCount -
the number of tests expected during this runconfigMap -
a Map
of key-value pairs that can be used by custom Reporter
sNullPointerException -
if any of the passed values are null
RunStarting
instance initialized with the passed and default values
ScalaTest 1.0
|
|