aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java')
-rw-r--r--libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java b/libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java
deleted file mode 100644
index 796d12031..000000000
--- a/libraries/spongycastle/pg/src/main/j2me/org/spongycastle/openpgp/test/RegressionTest.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package org.spongycastle.openpgp.test;
-
-import org.spongycastle.util.test.Test;
-import org.spongycastle.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);
- }
- }
-}
-