ScalaTest 0.9.5
|
|
org/scalatest/Stopper.scala
]
trait
Stopper
extends
AnyRefexecute
method of Suite
, so that running suites of tests can be
requested to stop early.Method Summary | |
def
|
stopRequested
: Boolean
Indicates whether a stop has been requested. Call this method
to determine whether a running test should stop. The
execute method of any Suite , or
code invoked by execute , should periodically check the
stopRequested property. If true ,
the execute method should interrupt its work and simply return. |
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
stopRequested : Boolean
execute
method of any Suite
, or
code invoked by execute
, should periodically check the
stopRequested
property. If true
,
the execute
method should interrupt its work and simply return.
ScalaTest 0.9.5
|
|