Interface TestCase
- All Known Implementing Classes:
- TestSequence,- WebTestCase
public interface TestCase
This interface defines a base set of methods required used by a TS test case.
- 
Method Details- 
executeExecutes the test case.- Throws:
- TestFailureException- if the test fails for any reason.
 
- 
setNameSets the name of the test case.- Parameters:
- name- of the test case
 
- 
getNameString getName()Returns the name of this test case.- Returns:
- test case name
 
- 
setStateSets the state for this test case. This state will differ from implementation to implementation.- Parameters:
- state- test state
 
- 
getStateObject getState()Returns the state of the test case. The state returned could possibly differ depending on when this method is called and when the test case has been executed.
 
-