blob: 74a24af131abdef2c88b5758a0031f8d49e213d7 (
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
|
package cz.crcs.ectester.common.test;
import cz.crcs.ectester.data.EC_Store;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class TestSuite {
protected String name;
protected String description;
protected List<Test> tests = new LinkedList<>();
protected EC_Store dataStore;
public TestSuite(EC_Store dataStore, String name, String description) {
this.dataStore = dataStore;
this.name = name;
this.description = description;
}
public List<Test> getTests() {
return Collections.unmodifiableList(tests);
}
public String getName() {
return name;
}
public String getDescription() {
return description;
}
}
|