1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package cz.crcs.ectester.common.test; /** * @author Jan Jancar johny@neuromancer.sk */ public interface Testable extends Runnable { /** * @return Whether this Testable was OK. */ boolean ok(); /** * @return Whether an error happened. */ boolean error(); }