Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AllTests.java « test « smime « mail « spongycastle « org « jdk1.4 « test « src « mail - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5665887f14dcc9711a4bec5e78b20ca46d89e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.bouncycastle.mail.smime.test;

import junit.framework.Test;
import junit.framework.TestSuite;

public class AllTests
{
    public static void main (String[] args)
        throws Exception
    {
        junit.textui.TestRunner.run (suite());
    }
    
    public static Test suite()
        throws Exception
    {
        TestSuite suite= new TestSuite("SMIME tests");

        suite.addTest(NewSMIMESignedTest.suite());
        suite.addTest(NewSMIMEEnvelopedTest.suite());
        suite.addTest(SMIMECompressedTest.suite());
        suite.addTest(SMIMEMiscTest.suite());
        return suite;
    }
}