aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java')
-rw-r--r--libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java b/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
deleted file mode 100644
index ef2236939..000000000
--- a/libraries/spongycastle/core/src/test/j2me/org/spongycastle/crypto/test/BigIntegerTest.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package org.spongycastle.crypto.test;
-
-import org.spongycastle.util.test.*;
-
-public class BigIntegerTest
-{
- public static Test[] tests = {
- new DHTest(),
- new ElGamalTest(),
- new DSATest(),
- new ECTest(),
- new ECIESTest(),
- new RSATest(),
- new ISO9796Test(),
- new OAEPTest(),
- new PSSTest(),
- new CTSTest(),
- new PKCS5Test(),
- new PKCS12Test()
- };
-
- public static void main(
- String[] args)
- {
- for (int i = 0; i != tests.length; i++)
- {
- TestResult result = tests[i].perform();
- System.out.println(result);
- }
- }
-}
-