aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java')
-rw-r--r--libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java b/libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java
deleted file mode 100644
index 1213b3cc3..000000000
--- a/libraries/spongycastle/pkix/src/test/java/org/spongycastle/ocsp/test/AllTests.java
+++ /dev/null
@@ -1,45 +0,0 @@
-package org.spongycastle.ocsp.test;
-
-import java.security.Security;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-import org.spongycastle.jce.provider.BouncyCastleProvider;
-import org.spongycastle.util.test.SimpleTestResult;
-
-public class AllTests
- extends TestCase
-{
- public void testOCSP()
- {
- Security.addProvider(new BouncyCastleProvider());
-
- org.spongycastle.util.test.Test[] tests = new org.spongycastle.util.test.Test[] { new OCSPTest() };
-
- 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("OCSP Tests");
-
- suite.addTestSuite(AllTests.class);
-
- return suite;
- }
-}