8 lines
116 B
Java
8 lines
116 B
Java
package junit.framework;
|
|
|
|
public interface Test {
|
|
int countTestCases();
|
|
|
|
void run(TestResult testResult);
|
|
}
|