01: package org.bouncycastle.mail.smime.test;
02:
03: import junit.framework.Test;
04: import junit.framework.TestSuite;
05:
06: public class AllTests {
07: public static void main(String[] args) throws Exception {
08: junit.textui.TestRunner.run(suite());
09: }
10:
11: public static Test suite() throws Exception {
12: TestSuite suite = new TestSuite("SMIME tests");
13:
14: suite.addTest(SMIMESignedTest.suite());
15: suite.addTest(SignedMailValidatorTest.suite());
16: suite.addTest(SMIMEEnvelopedTest.suite());
17: suite.addTest(SMIMECompressedTest.suite());
18: suite.addTest(SMIMEMiscTest.suite());
19: return suite;
20: }
21: }
|