blob: e033b0a72502413a365db7e05941fcfea92054cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cz.crcs.ectester.common.test;
/**
*
* @author Jan Jancar johny@neuromancer.sk
*/
public interface Testable {
boolean hasRun();
void run() throws TestException;
boolean ok();
boolean error();
}
|