1
2
3
4
5
6
7 package nl.tudelft.simulation.language;
8
9 import junit.framework.TestCase;
10
11 /***
12 * The JUNIT Test for the <code>BoundingBox</code>.
13 * <p>
14 * (c) copyright 2002-2005 <a href="http://www.simulation.tudelft.nl">Delft
15 * University of Technology </a>, the Netherlands.
16 * <p>
17 * See for project information <a
18 * href="http://www.simulation.tudelft.nl/dsol/language">www.simulation.tudelft.nl/language
19 * </a> <br>
20 * License of use: <a href="http://www.gnu.org/copyleft/lesser.html">Lesser
21 * General Public License (LGPL) </a>, no warranty
22 *
23 * @author <a href="http://www.peter-jacobs.com/index.htm">Peter Jacobs </a>
24 * @version 1.2 Sep 28, 2004
25 * @since 1.5
26 */
27 public class BoundingBoxTest extends TestCase
28 {
29
30 /***
31 * constructs a new MonitorTest
32 */
33 public BoundingBoxTest()
34 {
35 this("test");
36 }
37
38 /***
39 * constructs a new MonitorTest
40 *
41 * @param arg0
42 */
43 public BoundingBoxTest(String arg0)
44 {
45 super(arg0);
46 }
47
48 /***
49 * tests the BoundingBox
50 */
51 public void test()
52 {
53
54 }
55 }