1 package auxtestlib;
2
3 /**
4 * Evaluation that returns a boolean value.
5 */
6 public interface BooleanEvaluation {
7 /**
8 * Performs the evaluation.
9 * @return result of the evaluation
10 * @throws Exception failed to perform the computation
11 */
12 public boolean evaluate() throws Exception;
13 }