aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java
diff options
context:
space:
mode:
authorJ08nY2018-02-10 19:59:41 +0100
committerJ08nY2018-02-10 19:59:41 +0100
commit22e4cfaf40a259be007bddc7b5cd765390de1c11 (patch)
tree7b7429f1215ee9e47efa4b7b2eb688c88b1cc22a /src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java
parentab80803c561d05407144ffb5f1c4d45d698fec0b (diff)
downloadECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.tar.gz
ECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.tar.zst
ECTester-22e4cfaf40a259be007bddc7b5cd765390de1c11.zip
Handle exceptions in Tests and TestSuites grafeully.
Diffstat (limited to 'src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java')
-rw-r--r--src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java b/src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java
index 93273ca..a27c088 100644
--- a/src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java
+++ b/src/cz/crcs/ectester/standalone/test/KeyGeneratorTest.java
@@ -30,13 +30,4 @@ public class KeyGeneratorTest extends SimpleTest<KeyGeneratorTestable> {
public String getDescription() {
return "KeyPairGenerator " + testable.getKpg().getAlgorithm();
}
-
- @Override
- public void run() throws TestException {
- if (hasRun)
- return;
- testable.run();
- result = callback.apply(testable);
- hasRun = true;
- }
}