blob: b232456437b7595df5317b7563b8b252f1e2ea7f (
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
|
package cz.crcs.ectester.standalone.test.base;
import cz.crcs.ectester.common.test.Result;
import cz.crcs.ectester.common.test.SimpleTest;
import cz.crcs.ectester.common.test.TestCallback;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class KeyGeneratorTest extends SimpleTest<KeyGeneratorTestable> {
private KeyGeneratorTest(KeyGeneratorTestable kg, TestCallback<KeyGeneratorTestable> callback) {
super(kg, callback);
}
public static KeyGeneratorTest expect(KeyGeneratorTestable kg, Result.ExpectedValue expected) {
return new KeyGeneratorTest(kg, new TestCallback<KeyGeneratorTestable>() {
@Override
public Result apply(KeyGeneratorTestable keyGenerationTestable) {
Result.Value value = Result.Value.fromExpected(expected, keyGenerationTestable.ok(), keyGenerationTestable.error());
return new Result(value, value.description());
}
});
}
public static KeyGeneratorTest function(KeyGeneratorTestable ka, TestCallback<KeyGeneratorTestable> callback) {
return new KeyGeneratorTest(ka, callback);
}
@Override
public String getDescription() {
return "KeyPairGenerator " + testable.getKpg().getAlgorithm();
}
}
|