1
2
3
4
5
6
7
8
9
10 package nl.tudelft.simulation.dsol;
11
12 import junit.framework.Test;
13 import junit.framework.TestSuite;
14
15 /***
16 * The DSOL TestSuite defines the JUnit Test Suite which tests all DSOL classes.
17 * <br>
18 * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl"> Delft
19 * University of Technology </a>, the Netherlands. <br>
20 * See for project information <a href="http://www.simulation.tudelft.nl">
21 * www.simulation.tudelft.nl </a> <br>
22 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
23 * License (GPL) </a>, no warranty <br>
24 *
25 * @version 2.0 21.09.2003 <br>
26 * @author <a href="http://www.tbm.tudelft.nl/webstaf/peterja/index.htm">Peter
27 * Jacobs </a>, <a
28 * href="http://www.tbm.tudelft.nl/webstaf/alexandv/index.htm">Alexander
29 * Verbraeck </a>
30 */
31 public final class DSOLTestSuite
32 {
33 /***
34 * constructs a new DSOLTestSuite
35 */
36 private DSOLTestSuite()
37 {
38 super();
39 }
40
41 /***
42 * constructs the test suite
43 *
44 * @return Test the main DSOL Test Suite
45 */
46 public static Test suite()
47 {
48 TestSuite suite = new TestSuite("DSOL Test Suite");
49 return suite;
50 }
51 }