org.jtiger.framework
Interface SetUpTearDown

All Known Implementing Classes:
JUnitSetUpTearDown

public interface SetUpTearDown

Provides an implementation of setting up and tearing down a test fixture.
It is not guaranteed which order the framework executes the methods during either of these operations. Custom implementations can be passed on the command line using the appropriate argument.

Version:
2.1
Build Number 0376
Build Time 2006-07-28 01:50.16.218 CET (GMT + 1)
Author:
Tony Morris

Method Summary
 void setUp(Object fixture)
          Set up the given test fixture.
 void tearDown(Object fixture)
          Tear down the given test fixture.
 

Method Detail

setUp

void setUp(Object fixture)
           throws SetUpException
Set up the given test fixture.

Parameters:
fixture - The test fixture to set up.
Throws:
SetUpException - If an error occurs while setting up the test case.

tearDown

void tearDown(Object fixture)
              throws TearDownException
Tear down the given test fixture.

Parameters:
fixture - The test fixture to tear down.
Throws:
TearDownException - If an error occurs while tearing down the test case.