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 'pg/src/main/j2me/org/bouncycastle/openpgp/test/RegressionTest.java')
-rw-r--r--pg/src/main/j2me/org/bouncycastle/openpgp/test/RegressionTest.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/pg/src/main/j2me/org/bouncycastle/openpgp/test/RegressionTest.java b/pg/src/main/j2me/org/bouncycastle/openpgp/test/RegressionTest.java
deleted file mode 100644
index 23337ce9..00000000
--- a/pg/src/main/j2me/org/bouncycastle/openpgp/test/RegressionTest.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package org.bouncycastle.openpgp.test;
-
-import org.bouncycastle.util.test.Test;
-import org.bouncycastle.util.test.TestResult;
-
-public class RegressionTest
-{
- public static Test[] tests = {
- new BcPGPDSAElGamalTest(),
- new BcPGPDSATest(),
- new BcPGPKeyRingTest(),
- new BcPGPPBETest(),
- new BcPGPRSATest()
- };
-
- public static void main(
- String[] args)
- {
- for (int i = 0; i != tests.length; i++)
- {
- TestResult result = tests[i].perform();
-
- if (result.getException() != null)
- {
- result.getException().printStackTrace();
- }
-
- System.out.println(result);
- }
- }
-}
-