org.bouncycastle.cms.test.CMSTestSetup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
// Copyright (c) 2005 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
package org.bouncycastle.cms.test;
import junit.extensions.TestSetup;
import junit.framework.Test;
import java.security.Security;
class CMSTestSetup extends TestSetup
{
public CMSTestSetup(Test test)
{
super(test);
}
protected void setUp()
{
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
}
protected void tearDown()
{
Security.removeProvider("BC");
}
}