20 lines
341 B
Plaintext
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;
|
|
}
|
|
|
|
} |