
package tmcsim.utilities;

import java.io.File;
import junit.framework.TestCase;

/**
 *
 * @author jdalbey
 */
public class BuildHighwayFileTest extends TestCase
{
    
    public BuildHighwayFileTest(String testName)
    {
        super(testName);
    }
    
    @Override
    protected void setUp() throws Exception
    {
        super.setUp();
    }
    
    @Override
    protected void tearDown() throws Exception
    {
        super.tearDown();
    }

    public void testCreateVDSlookup()
    {
        System.out.println("createVDSlookup");
        BuildHighwayFile instance = new BuildHighwayFile();
        instance.createLanelookup();
        String filename = BuildHighwayFile.filepath +BuildHighwayFile.loopFileName;
        File f = new File(filename);
        assert(f.exists());
    }

    
}
