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