summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java')
-rw-r--r--bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java b/bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java
deleted file mode 100644
index 35bf235..0000000
--- a/bcprov/src/main/java/org/bouncycastle/crypto/test/AllTests.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.bouncycastle.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 Crypto Tests");
-
- suite.addTestSuite(AllTests.class);
- suite.addTestSuite(GCMReorderTest.class);
-
- return suite;
- }
-}