1   /*
2    * @(#) BoundingBoxTest.java Sep 28, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  import junit.framework.TestCase;
11  
12  /***
13   * <p>
14   * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
15   * University of Technology </a>, the Netherlands. <br>
16   * See for project information <a
17   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
18   * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
19   * License (GPL) </a>, no warranty <br>
20   * 
21   * @author <a href="http://www.tbm.tudelft.nl/webstaf/peterja/index.htm">Peter
22   *         Jacobs </a>
23   * @version 1.2 Sep 28, 2004
24   * @since 1.4
25   */
26  public class BoundingBoxTest extends TestCase
27  {
28  
29  	/***
30  	 * constructs a new BoundingBoxTest
31  	 */
32  	public BoundingBoxTest()
33  	{
34  		this("test");
35  	}
36  
37  	/***
38  	 * constructs a new BoundingBoxTest
39  	 * 
40  	 * @param arg0
41  	 */
42  	public BoundingBoxTest(String arg0)
43  	{
44  		super(arg0);
45  	}
46  
47  	/***
48  	 * tests the BoundingBox
49  	 */
50  	public void test()
51  	{
52  		//TODO implement the test method
53  	}
54  }