public abstract class TestSuite
extends java.lang.Object
Constructor and Description |
---|
TestSuite() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getFactory()
Get the factory used by this test suite.
|
TestHarness |
getTestHarness()
Get the test harness used by this test suite.
|
void |
run()
Initialize the test harness and run all the tests that can be
run by this class.
|
void |
runAll()
Run all the tests that can be run by this class.
|
abstract void |
runSuite()
Run the tests defined by this test suite.
|
void |
runTestCase(TestCase testCase)
Run a single test case by passing it to the harness used by this
test suite.
|
void |
setFactory(java.lang.Object f)
Set the factory used by this test suite.
|
void |
setTestHarness(TestHarness h)
Set the test harness used by this test suite.
|
public final void run()
public void runAll()
public abstract void runSuite()
public void runTestCase(TestCase testCase)
getTestHarness().runTestCase(testCase)
public void setTestHarness(TestHarness h)
public TestHarness getTestHarness()
public void setFactory(java.lang.Object f)
public java.lang.Object getFactory()