momeunit.framework
Interface Test

All Known Implementing Classes:
TestCase, TestSuite, TestSuite.ErrorTestCase

public interface Test

A Base interface that all tests should implement.

Version:
1.1.2
Author:
Sergio Morozov

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.
 

Method Detail

countTestCases

int countTestCases()
Counts the number of test cases that will be run by this test.

Since:
1.0

run

void run(TestResult result)
Runs a test and collects its result in a TestResult instance.

Since:
1.0