blob: 5f26f5202ecd9c7af367b8a12e97c7055a348e24 (
plain) (
blame)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
package cz.crcs.ectester.common.test;
import cz.crcs.ectester.common.output.TestWriter;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class TestSuite {
protected String name;
protected String[] description;
private TestWriter writer;
private Test running;
public TestSuite(TestWriter writer, String name, String... description) {
this.writer = writer;
this.name = name;
this.description = description;
}
/**
* Run the <code>TestSuite</code>.
*/
public void run() {
writer.begin(this);
try {
runTests();
} catch (TestException e) {
writer.outputError(running, e);
} catch (Exception e) {
writer.end();
throw new TestSuiteException(e);
}
writer.end();
}
/**
* Run the given test and return it back.
*
* @param t The test to run.
* @return The test that was run.
* @throws TestException
*/
protected <T extends Test> T runTest(T t) {
running = t;
t.run();
running = null;
return t;
}
/**
* Run the given test, output it and return it back.
*
* @param t The test to run.
* @return The test that was run.
* @throws TestException
*/
protected <T extends Test> T doTest(T t) {
runTest(t);
writer.outputTest(t);
return t;
}
/**
*
*/
protected abstract void runTests() throws Exception;
public String getName() {
return name;
}
public String[] getDescription() {
return description;
}
public String getTextDescription() {
return String.join(System.lineSeparator(), description);
}
public String toString() {
return null;
}
}
|