package nl.tudelft.simulation.language; import junit.framework.TestCase; /** * The JUNIT Test for the BoundingBox. *

* Copyright (c) 2002-2018 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights * reserved. See for project information * https://simulation.tudelft.nl. The DSOL project is distributed under a three-clause BSD-style license, which can * be found at * https://simulation.tudelft.nl/dsol/3.0/license.html. *

* @author Peter Jacobs * @since 1.5 */ public class BoundingBoxTest extends TestCase { /** * constructs a new MonitorTest. */ public BoundingBoxTest() { this("test"); } /** * constructs a new MonitorTest. * @param arg0 */ public BoundingBoxTest(String arg0) { super(arg0); } /** * tests the BoundingBox */ public void test() { // TODO implement the test method } }