1   /*
2    * @(#) MonitorTest.java Sep 28, 2004 Copyright (c) 2002-2005 Delft University
3    * of Technology Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights
4    * reserved. This software is proprietary information of Delft University of
5    * Technology The code is published under the Lesser General Public License
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          // TODO implement the test method
54      }
55  }