Get a JUnit Description
for this ScalaTest Suite
of tests.
Get a JUnit Description
for this ScalaTest Suite
of tests.
return a Description
of this suite of tests
Run this Suite
of tests, reporting results to the passed RunNotifier
.
Run this Suite
of tests, reporting results to the passed RunNotifier
.
This class's implementation of this method invokes run
on an instance of the
suiteClass
Class
passed to the primary constructor, passing
in a Reporter
that forwards to the RunNotifier
passed to this
method as notifier
.
the JUnit RunNotifier
to which to report the results of executing
this suite of tests
Returns the number of tests that are expected to run when this ScalaTest Suite
is run.
Returns the number of tests that are expected to run when this ScalaTest Suite
is run.
the expected number of tests that will run when this suite is run
A JUnit
Runner
that knows how to run any ScalaTestSuite
. This enables you to provide a JUnitRunWith
annotation on any ScalaTestSuite
. Here's an example:This
RunWith
annotation will enable theMySuite
class to be run by JUnit 4.