junit.framework
Interface Test

public interface Test
A Test can be run and collect its results.
SinceNot specified.
VersionNot specified.
AuthorNot specified.
See also
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
int countTestCases()
Counts the number of test cases that will be run by this test.
void run( TestResult result )
Runs a test and collects its result in a TestResult instance.
countTestCases
public int countTestCases ( )
Counts the number of test cases that will be run by this test.
Wiki javadoc Use textile entry format.
Add your comments here.
run
public void run ( TestResult result )
Runs a test and collects its result in a TestResult instance.
Parameters
TypeNameDescription
TestResult result No description provided.
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.