Changeset 345 in tmcsimulator for trunk/test/tmcsim/utilities


Ignore:
Timestamp:
03/24/2019 09:48:29 AM (7 years ago)
Author:
jdalbey
Message:

minor changes to output messages to get unit tests to pass. All passing now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/tmcsim/utilities/BuildHighwayFileTest.java

    r338 r345  
    2929    } 
    3030 
    31     public void testCreateVDSlookup() 
     31    /** Just a smoke test to see if it creates the output file */ 
     32    public void testCheckFileCreated() 
    3233    { 
    3334        System.out.println("createVDSlookup"); 
    34         BuildHighwayFile instance = new BuildHighwayFile(); 
    35         instance.createLanelookup(); 
     35        BuildHighwayFile app = new BuildHighwayFile(); 
     36        app.createLDSdict(); 
     37        app.createVDSdict(); 
     38        app.createLanelookup(); 
     39        app.createHighwayFile(); 
     40        app.showLeftoverVDS(); 
     41 
    3642        String filename = BuildHighwayFile.dirpath +BuildHighwayFile.loopFileName; 
    3743        File f = new File(filename); 
Note: See TracChangeset for help on using the changeset viewer.