Indicates whether a stop has been requested.
Indicates whether a stop has been requested. Call this method
to determine whether a running test should stop. The run
method of any Suite
, or
code invoked by run
, should periodically check the
stop requested function. If true
,
the run
method should interrupt its work and simply return.
Trait whose instances can indicate whether a stop has been requested. This is passed in to the
run
method ofSuite
, so that running suites of tests can be requested to stop early.