All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.est.test.ESTTestSetup Maven / Gradle / Ivy


package org.bouncycastle.est.test;

import java.security.Security;

import junit.extensions.TestSetup;
import junit.framework.Test;
import org.bouncycastle.jce.provider.BouncyCastleProvider;

class ESTTestSetup
    extends TestSetup
{
    public ESTTestSetup(Test test)
    {
        super(test);
    }

    protected void setUp()
    {
        Security.addProvider(new BouncyCastleProvider());
    }

    protected void tearDown()
    {
        Security.removeProvider(BouncyCastleProvider.PROVIDER_NAME);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy