Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/jdk1.4/org/bouncycastle/pqc/crypto/test/AllTests.java')
-rw-r--r--core/src/test/jdk1.4/org/bouncycastle/pqc/crypto/test/AllTests.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/core/src/test/jdk1.4/org/bouncycastle/pqc/crypto/test/AllTests.java b/core/src/test/jdk1.4/org/bouncycastle/pqc/crypto/test/AllTests.java
deleted file mode 100644
index 2fd64147..00000000
--- a/core/src/test/jdk1.4/org/bouncycastle/pqc/crypto/test/AllTests.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package org.bouncycastle.pqc.crypto.test;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-import org.bouncycastle.util.test.SimpleTestResult;
-
-public class AllTests
- extends TestCase
-{
- public void testCrypto()
- {
- org.bouncycastle.util.test.Test[] tests = RegressionTest.tests;
-
-// for (int i = 0; i != tests.length; i++)
-// {
-// SimpleTestResult result = (SimpleTestResult)tests[i].perform();
-//
-// if (!result.isSuccessful())
-// {
-// fail(result.toString());
-// }
-// }
- }
-
- public static void main (String[] args)
- {
- junit.textui.TestRunner.run(suite());
- }
-
- public static Test suite()
- {
- TestSuite suite = new TestSuite("Lightweight PQ Crypto Tests");
-
- suite.addTestSuite(AllTests.class);
-
- return suite;
- }
-}