Index: trunk/test/tmcsim/simulationmanager/SimulationManagerSmokeTest.java
===================================================================
--- trunk/test/tmcsim/simulationmanager/SimulationManagerSmokeTest.java	(revision 6)
+++ trunk/test/tmcsim/simulationmanager/SimulationManagerSmokeTest.java	(revision 13)
@@ -35,5 +35,5 @@
 
         Window cadwindow = null;
-        System.setProperty("CAD_SIM_PROPERTIES", "config/cad_simulator_config.properties");
+        System.setProperty("CAD_SIM_PROPERTIES", "config/cad_simulator_smoketest_config.properties");
         if (System.getProperty("CAD_SIM_PROPERTIES") != null)
         {
@@ -66,5 +66,5 @@
 
         Window simMgrWindow = null;
-        System.setProperty("SIM_MGR_PROPERTIES", "config/sim_manager_config.properties");
+        System.setProperty("SIM_MGR_PROPERTIES", "config/sim_manager_smoketest_config.properties");
         if (System.getProperty("SIM_MGR_PROPERTIES") != null)
         {
Index: trunk/test/tmcsim/paramicscommunicator/ParamicsFileReaderTest.java
===================================================================
--- trunk/test/tmcsim/paramicscommunicator/ParamicsFileReaderTest.java	(revision 6)
+++ trunk/test/tmcsim/paramicscommunicator/ParamicsFileReaderTest.java	(revision 13)
@@ -1,4 +1,5 @@
 package tmcsim.paramicscommunicator;
 
+import java.io.File;
 import java.io.FileWriter;
 import java.io.PrintWriter;
@@ -29,4 +30,11 @@
     {
         super.setUp();
+    }
+
+    @Override
+    public void tearDown() throws java.io.IOException
+    {
+        File removeMe = new File("inputfile.txt");
+        removeMe.delete();
     }
 
