ScalaTest 1.0
|
|
org/scalatest/events/SuiteStarting.scala
]
object
SuiteStarting
extends
AnyRefSuiteStarting
event, which contains overloaded factory methods
and an extractor method to facilitate pattern matching on SuiteStarting
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], formatter : scala.Option[Formatter], rerunner : scala.Option[Rerunner]) : SuiteStarting
Constructs a new
SuiteStarting 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, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String]) : SuiteStarting
Constructs a new
SuiteStarting event with the passed parameters, passing None for
formatter , None as the rerunner , 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], formatter : scala.Option[Formatter]) : SuiteStarting
Constructs a new
SuiteStarting event with the passed parameters, passing None as the
rerunner , 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], formatter : scala.Option[Formatter], rerunner : scala.Option[Rerunner], payload : scala.Option[Any]) : SuiteStarting
Constructs a new
SuiteStarting 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, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], formatter : scala.Option[Formatter], rerunner : scala.Option[Rerunner], payload : scala.Option[Any]) : SuiteStarting
SuiteStarting
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 -
a localized name identifying the suite that is starting, which should include the suite name, suitable for presenting to the usersuiteClassName -
an optional fully qualifed Suite
class name of the suite that is startingformatter -
an optional formatter that provides extra information that can be used by reporters in determining how to present this event to the userrerunner -
an optional Rerunner
that can be used to rerun the suite that is starting (if None
is passed, the suite cannot be rerun)payload -
an optional object that can be used to pass custom information to the reporter about the SuiteStarting
eventNullPointerException -
if any of the passed values are null
SuiteStarting
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], formatter : scala.Option[Formatter], rerunner : scala.Option[Rerunner]) : SuiteStarting
SuiteStarting
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 -
a localized name identifying the suite that is starting, which should include the suite name, suitable for presenting to the usersuiteClassName -
an optional fully qualifed Suite
class name of the suite that is startingformatter -
an optional formatter that provides extra information that can be used by reporters in determining how to present this event to the userrerunner -
an optional Rerunner
that can be used to rerun the suite that is starting (if None
is passed, the suite cannot be rerun)NullPointerException -
if any of the passed values are null
SuiteStarting
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String], formatter : scala.Option[Formatter]) : SuiteStarting
SuiteStarting
event with the passed parameters, passing None
as the
rerunner
, 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 -
a localized name identifying the suite that is starting, which should include the suite name, suitable for presenting to the usersuiteClassName -
an optional fully qualifed Suite
class name of the suite that is startingformatter -
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
SuiteStarting
instance initialized with the passed and default values
def
apply(ordinal : Ordinal, suiteName : java.lang.String, suiteClassName : scala.Option[java.lang.String]) : SuiteStarting
SuiteStarting
event with the passed parameters, passing None
for
formatter
, None
as the rerunner
, 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 -
a localized name identifying the suite that is starting, which should include the suite name, suitable for presenting to the usersuiteClassName -
an optional fully qualifed Suite
class name of the suite that is startingNullPointerException -
if any of the passed values are null
SuiteStarting
instance initialized with the passed and default values
ScalaTest 1.0
|
|