2026-03-17 13:31:18 -07:00

8 lines
116 B
Java

package junit.framework;
public interface Test {
int countTestCases();
void run(TestResult testResult);
}