1   /*
2    * Created on Feb 21, 2004
3    *
4    * To change the template for this generated file go to
5    * Window - Preferences - Java - Code Generation - Code and Comments
6    */
7   package net.sourceforge.kamiwaai.geometricalgebra;
8   
9   import junit.framework.Test;
10  import junit.framework.TestSuite;
11  
12  /***
13   * @author Ginanjar Utama
14   *
15   * To change the template for this generated type comment go to
16   * Window - Preferences - Java - Code Generation - Code and Comments
17   */
18  public class AllTests {
19  
20  	public static void main(String[] args) {
21  		junit.swingui.TestRunner.run(AllTests.class);
22  	}
23  
24  	public static Test suite() {
25  		TestSuite suite =
26  			new TestSuite("Test for net.sourceforge.kamiwaai.geometricalgebra");
27  		//$JUnit-BEGIN$
28  		suite.addTestSuite(ComplexNumberTest.class);
29  		suite.addTestSuite(ComplexQuaternionTest.class);
30  		suite.addTestSuite(MultiVectorTest.class);
31  		suite.addTestSuite(ConformalPointTest.class);
32  		suite.addTestSuite(LineTest.class);
33  		suite.addTestSuite(SphereTest.class);
34  		//$JUnit-END$
35  		return suite;
36  	}
37  }