blob: 691bea8595b59d4e169dba8437380b6468db1dcf (
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
|
package cz.crcs.ectester.standalone.output;
import cz.crcs.ectester.common.output.BaseTextTestWriter;
import cz.crcs.ectester.common.test.TestSuite;
import cz.crcs.ectester.common.test.Testable;
import cz.crcs.ectester.standalone.ECTesterStandalone;
import cz.crcs.ectester.standalone.test.base.*;
import cz.crcs.ectester.standalone.test.suites.StandaloneTestSuite;
import javax.crypto.KeyAgreement;
import java.io.PrintStream;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class TextTestWriter extends BaseTextTestWriter {
public TextTestWriter(PrintStream output) {
super(output);
}
@Override
protected String testableString(Testable t) {
if (t instanceof StandaloneTestable) {
return ((StandaloneTestable)t).getStage().name();
}
return "";
}
@Override
protected String deviceString(TestSuite suite) {
if (suite instanceof StandaloneTestSuite) {
StandaloneTestSuite standaloneSuite = (StandaloneTestSuite) suite;
StringBuilder sb = new StringBuilder();
sb.append("═══ ECTester version: " + ECTesterStandalone.VERSION).append(System.lineSeparator());
sb.append("═══ ").append(standaloneSuite.getLibrary().name()).append(System.lineSeparator());
return sb.toString();
}
return "";
}
}
|