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