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 Route class
011     **/
012    public class RouteTest extends TestCase {
013        public RouteTest(String name) {
014            super(name);
015        }
016    
017        // JUnit calls setUp() before each test__ method is run
018        protected void setUp() {
019    
020        }
021    }