01: package org.bouncycastle.util;
02:
03: import junit.framework.Test;
04: import junit.framework.TestSuite;
05:
06: public class AllTests {
07: public static void main(String[] args) {
08: junit.textui.TestRunner.run(suite());
09: }
10:
11: public static Test suite() {
12: TestSuite suite = new TestSuite("util tests");
13: suite.addTestSuite(IPTest.class);
14: return suite;
15: }
16: }
|