aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/common/output/TestWriter.java
blob: 0ecfd5a189e5bdcb890ebc3b9493e58038c56150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cz.crcs.ectester.common.output;

import cz.crcs.ectester.common.test.Test;
import cz.crcs.ectester.common.test.TestSuite;

/**
 * @author Jan Jancar johny@neuromancer.sk
 */
public interface TestWriter {
    void begin(TestSuite suite);

    void outputTest(Test t);

    void end();
}