001 package ps2.test;
002
003 import ps2.*;
004 import static ps2.test.TestValues.TOLERANCE;
005
006 import org.junit.*;
007
008 /**
009 * Unit tests for the GeoFeature class
010 **/
011 public class GeoFeatureTest {
012
013 // JUnit calls @Before methods before running each @Test method
014 @Before
015 public void setupBeforeEachTest() {
016 // any setup you want before running each @Test can go here
017 }
018
019 // Your tests can go here
020 }