forked from bcgit/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
prov/src/test/jdk1.3/org/bouncycastle/jce/provider/test/nist/AllTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package org.bouncycastle.jce.provider.test.nist; | ||
|
||
import java.security.Security; | ||
|
||
import junit.extensions.TestSetup; | ||
import junit.framework.Test; | ||
import junit.framework.TestCase; | ||
import junit.framework.TestSuite; | ||
import org.bouncycastle.jce.provider.BouncyCastleProvider; | ||
|
||
public class AllTests | ||
extends TestCase | ||
{ | ||
public static void main (String[] args) | ||
{ | ||
junit.textui.TestRunner.run(suite()); | ||
} | ||
|
||
public static Test suite() | ||
{ | ||
TestSuite suite = new TestSuite("CertPath Tests"); | ||
|
||
suite.addTestSuite(NistCertPathTest.class); | ||
|
||
return new BCTestSetup(suite); | ||
} | ||
|
||
static class BCTestSetup | ||
extends TestSetup | ||
{ | ||
public BCTestSetup(Test test) | ||
{ | ||
super(test); | ||
} | ||
|
||
protected void setUp() | ||
{ | ||
Security.addProvider(new BouncyCastleProvider()); | ||
} | ||
|
||
protected void tearDown() | ||
{ | ||
Security.removeProvider("BC"); | ||
} | ||
} | ||
} |