junit.extensions

Class TestSetup

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.
Constructor Summary
TestSetup(Test test)
Method Summary
voidrun(TestResult result)
protected voidsetUp()
Sets up the fixture.
protected voidtearDown()
Tears down the fixture.

Constructor Detail

TestSetup

public TestSetup(Test test)

Method Detail

run

public void run(TestResult result)

setUp

protected void setUp()
Sets up the fixture. Override to set up additional fixture state.

tearDown

protected void tearDown()
Tears down the fixture. Override to tear down the additional fixture state.