diff options
| author | J08nY | 2018-02-10 19:59:41 +0100 |
|---|---|---|
| committer | J08nY | 2018-02-10 19:59:41 +0100 |
| commit | 22e4cfaf40a259be007bddc7b5cd765390de1c11 (patch) | |
| tree | 7b7429f1215ee9e47efa4b7b2eb688c88b1cc22a /src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java | |
| parent | ab80803c561d05407144ffb5f1c4d45d698fec0b (diff) | |
| download | ECTester-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/KeyAgreementTest.java')
| -rw-r--r-- | src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java b/src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java index 5f697c4..7672c4b 100644 --- a/src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java +++ b/src/cz/crcs/ectester/standalone/test/KeyAgreementTest.java @@ -3,7 +3,6 @@ package cz.crcs.ectester.standalone.test; import cz.crcs.ectester.common.test.Result; import cz.crcs.ectester.common.test.SimpleTest; import cz.crcs.ectester.common.test.TestCallback; -import cz.crcs.ectester.common.test.TestException; import java.util.Arrays; @@ -45,13 +44,4 @@ public class KeyAgreementTest extends SimpleTest<KeyAgreementTestable> { public String getDescription() { return "KeyAgreement " + testable.getKa().getAlgorithm(); } - - @Override - public void run() throws TestException { - if (hasRun) - return; - testable.run(); - result = callback.apply(testable); - hasRun = true; - } } |
