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

org.bouncycastle.mime.test.AllTests Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.

The newest version!
package org.bouncycastle.mime.test;

import java.security.Security;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.bouncycastle.jce.provider.BouncyCastleProvider;

public class AllTests
    extends TestCase
{
    private static final String BC = BouncyCastleProvider.PROVIDER_NAME;

    public void setUp()
    {
        if (Security.getProvider(BC) != null)
        {
            Security.addProvider(new BouncyCastleProvider());
        }
    }

    public static void main(String[] args)
        throws Exception
    {
        Security.addProvider(new BouncyCastleProvider());

        junit.textui.TestRunner.run(suite());
    }

    public static Test suite()
        throws Exception
    {
        TestSuite suite = new TestSuite("MIME tests");

        suite.addTestSuite(Base64TransferEncodingTest.class);
        suite.addTestSuite(MimeParserTest.class);
        suite.addTestSuite(MultipartParserTest.class);
        suite.addTestSuite(QuotedPrintableTest.class);
        suite.addTestSuite(TestBoundaryLimitedInputStream.class);
        suite.addTestSuite(TestSMIMEEnveloped.class);
        suite.addTestSuite(TestSMIMESigned.class);
        suite.addTestSuite(TestSMIMESignEncrypt.class);

        return new MIMETestSetup(suite);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy