| Class Summary | |
trait
|
Distributor
extends AnyRef
|
class
|
Report
(val name : java.lang.String, val message : java.lang.String, val throwable : scala.Option[java.lang.Throwable], val rerunnable : scala.Option[Rerunnable], val threadName : java.lang.String, val date : java.util.Date) extends AnyRef
|
trait
|
Reporter
extends AnyRef
Trait whose instances collect the results of a running
suite of tests and presents those results in some way to the user.
|
trait
|
Rerunnable
extends AnyRef
Trait whose instances can rerun tests or other entities (such as suites). An object extending
this trait can be passed to a
Reporter as part of a Report. The
test or other entity about which the report is made can then be rerun by invoking the
rerun method on the Rerunnable. |
trait
|
Stopper
extends AnyRef
Trait whose instances can indicate whether a stop has been requested. This is passed in
to the
execute method of Suite, so that running suites of tests can be
requested to stop early. |
trait
|
Suite
extends AnyRef
|
class
|
SuperSuite
(val override nestedSuites : scala.List[Suite]) extends Suite
A
Suite class that takes a List[Suite] parameter, which overrides
the nestedSuites method of trait Suite. |