1
2
3
4
5
6
7
8
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
53 }
54 }