1
2
3
4
5
6
7
8
9
10 package nl.javel.gisbeans.geom;
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 28, 2004
26 * @since 1.4
27 */
28 public class GisObjectTest extends TestCase
29 {
30
31 /***
32 * constructs a new GisObjectTest
33 */
34 public GisObjectTest()
35 {
36 this("test");
37 }
38
39 /***
40 * constructs a new GisObjectTest
41 *
42 * @param arg0
43 */
44 public GisObjectTest(String arg0)
45 {
46 super(arg0);
47 }
48
49 /***
50 * tests the GisObject
51 */
52 public void test()
53 {
54
55 }
56 }