junit.extensions
Class TestDecorator
java.lang.Object
|
+--junit.framework.Assert
|
+--junit.extensions.TestDecorator
- Direct Known Subclasses:
- RepeatedTest, TestSetup
- public class TestDecorator
- extends Assert
- implements Test
A Decorator for Tests. Use TestDecorator as the base class
for defining new test decorators. Test decorator subclasses
can be introduced to add behaviour before or after a test
is run.
Methods inherited from class junit.framework.Assert |
assert,
assert,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertEquals,
assertNotNull,
assertNotNull,
assertNull,
assertNull,
assertSame,
assertSame,
assertTrue,
assertTrue,
fail,
fail |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
fTest
protected Test fTest
TestDecorator
public TestDecorator(Test test)
basicRun
public void basicRun(TestResult result)
- The basic run behaviour.
countTestCases
public int countTestCases()
- Description copied from interface: Test
- Counts the number of test cases that will be run by this test.
- Specified by:
- countTestCases in interface Test
run
public void run(TestResult result)
- Description copied from interface: Test
- Runs a test and collects its result in a TestResult instance.
- Specified by:
- run in interface Test
toString
public java.lang.String toString()
- Overrides:
- toString in class java.lang.Object
getTest
public Test getTest()