summaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/common/test/TestSuite.java
blob: f4f30eefa5f154729d599fc63bc28c6e67934fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package cz.crcs.ectester.common.test;

import cz.crcs.ectester.common.output.TestWriter;
import cz.crcs.ectester.data.EC_Store;

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.stream.Collectors;

/**
 * @author Jan Jancar johny@neuromancer.sk
 */
public abstract class TestSuite {
    protected String name;
    protected String description;
    protected TestWriter writer;

    public TestSuite(TestWriter writer, String name, String description) {
        this.writer = writer;
        this.name = name;
        this.description = description;
    }

    public void run() throws TestException {
        writer.begin(this);
        try {
            runTests();
        } catch (Exception e) {
            throw new TestException(e);
        }
        writer.end();
    }

    protected Test runTest(Test t) throws TestException {
        t.run();
        return t;
    }

    protected Test doTest(Test t) throws TestException {
        t.run();
        writer.outputTest(t);
        return t;
    }

    protected abstract void runTests() throws Exception;

    public String getName() {
        return name;
    }

    public String getDescription() {
        return description;
    }

}