blob: 20972549a6b142c6e9bf6277aebb37e78bb25196 (
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
|
package cz.crcs.ectester.common.output;
import cz.crcs.ectester.common.test.BaseTestable;
import cz.crcs.ectester.common.test.Testable;
import java.io.OutputStream;
import java.io.PrintStream;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class TestableWriter {
private PrintStream output;
public TestableWriter(PrintStream output) {
this.output = output;
}
public TestableWriter(OutputStream output) {
this(new PrintStream(output));
}
public String outputTestableMeta(BaseTestable t) {
return null;
}
public void writeTestableMeta(BaseTestable t) {
}
public String outputTestable(BaseTestable t) {
return null;
}
public void writeTestable(BaseTestable t) {
}
}
|