racket/collects/profj/libs/java/tester/TestBase.djava
2006-06-23 20:33:19 +00:00

20 lines
341 B
Plaintext

package java.tester;
public final class TestBase {
protected boolean useEquals = false;
public void setup() { }
public void breakdown() { }
dynamic testMethods() {
return null;
}
// void || (listof (list string (listof string (listof int))))
dynamic testCoverage( boolean getResult, int src) {
return null;
}
}