Changeset 13 in tmcsimulator for trunk/test/tmcsim


Ignore:
Timestamp:
04/21/2016 07:17:51 PM (10 years ago)
Author:
jdalbey
Message:

add smoketest config files

Location:
trunk/test/tmcsim
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/tmcsim/paramicscommunicator/ParamicsFileReaderTest.java

    r6 r13  
    11package tmcsim.paramicscommunicator; 
    22 
     3import java.io.File; 
    34import java.io.FileWriter; 
    45import java.io.PrintWriter; 
     
    2930    { 
    3031        super.setUp(); 
     32    } 
     33 
     34    @Override 
     35    public void tearDown() throws java.io.IOException 
     36    { 
     37        File removeMe = new File("inputfile.txt"); 
     38        removeMe.delete(); 
    3139    } 
    3240 
  • trunk/test/tmcsim/simulationmanager/SimulationManagerSmokeTest.java

    r6 r13  
    3535 
    3636        Window cadwindow = null; 
    37         System.setProperty("CAD_SIM_PROPERTIES", "config/cad_simulator_config.properties"); 
     37        System.setProperty("CAD_SIM_PROPERTIES", "config/cad_simulator_smoketest_config.properties"); 
    3838        if (System.getProperty("CAD_SIM_PROPERTIES") != null) 
    3939        { 
     
    6666 
    6767        Window simMgrWindow = null; 
    68         System.setProperty("SIM_MGR_PROPERTIES", "config/sim_manager_config.properties"); 
     68        System.setProperty("SIM_MGR_PROPERTIES", "config/sim_manager_smoketest_config.properties"); 
    6969        if (System.getProperty("SIM_MGR_PROPERTIES") != null) 
    7070        { 
Note: See TracChangeset for help on using the changeset viewer.