01: package org.bouncycastle.math.ec.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("EC Math tests");
13:
14: suite.addTest(ECPointTest.suite());
15:
16: return suite;
17: }
18: }
|