001    package ps2.test;
002    
003    import ps2.*;
004    import static ps2.test.TestValues.TOLERANCE;
005    
006    import junit.framework.*;
007    
008    
009    /**
010     * Unit tests for the GeoFeature class
011     **/
012    public class GeoFeatureTest extends TestCase {
013    
014        public GeoFeatureTest(String name) {
015            super(name);
016        }
017    
018        // JUnit calls setUp() before each test__ method is run
019        protected void setUp() {
020        }
021    }