blob: f68320adf7d34410e19f1438ccd45873f011180a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package cz.crcs.ectester.common.test;
/**
* @param <T>
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class SimpleTest<T extends BaseTestable> extends Test {
protected T testable;
protected TestCallback<T> callback;
public SimpleTest(T testable, TestCallback<T> callback) {
this.testable = testable;
this.callback = callback;
}
public T getTestable() {
return testable;
}
}
|