TestSetup (JUnit API)
junit.extensions
Class TestSetup
java.lang.Object
|
+--junit.framework.Assert
|
+--junit.extensions.TestDecorator
|
+--junit.extensions.TestSetup
All Implemented Interfaces: Test
public class TestSetup extends TestDecorator
A Decorator to set up and tear down additional fixture state.
Subclass TestSetup and insert it into your tests when you want
to set up additional state once before the tests are run.
Method Summary
void
run (TestResult result)
Runs a test and collects its result in a TestResult instance.
protected void
setUp ()
Sets up the fixture.
protected void
tearDown ()
Tears down the fixture.
Methods inherited from class junit.framework.Assert
assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertEquals , assertFalse , assertFalse , assertNotNull , assertNotNull , assertNotSame , assertNotSame , 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
TestSetup
public TestSetup (Test 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
Overrides: run
in class TestDecorator
setUp
protected void setUp ()
throws java.lang.Exception
Sets up the fixture. Override to set up additional fixture
state.
java.lang.Exception
tearDown
protected void tearDown ()
throws java.lang.Exception
Tears down the fixture. Override to tear down the additional
fixture state.
java.lang.Exception