source: tmcsimulator/trunk/test/tmcsim/utilities/BuildHighwayFileTest.java @ 291

Revision 291, 811 bytes checked in by jdalbey, 7 years ago (diff)

file cleanup and reorganization

Line 
1
2package tmcsim.utilities;
3
4import java.io.File;
5import junit.framework.TestCase;
6
7/**
8 *
9 * @author jdalbey
10 */
11public class BuildHighwayFileTest extends TestCase
12{
13   
14    public BuildHighwayFileTest(String testName)
15    {
16        super(testName);
17    }
18   
19    @Override
20    protected void setUp() throws Exception
21    {
22        super.setUp();
23    }
24   
25    @Override
26    protected void tearDown() throws Exception
27    {
28        super.tearDown();
29    }
30
31    public void testCreateVDSlookup()
32    {
33        System.out.println("createVDSlookup");
34        BuildHighwayFile instance = new BuildHighwayFile();
35        instance.createLanelookup();
36        String filename = BuildHighwayFile.filepath +BuildHighwayFile.loopFileName;
37        File f = new File(filename);
38        assert(f.exists());
39    }
40
41   
42}
Note: See TracBrowser for help on using the repository browser.