Index: trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java
===================================================================
--- trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java	(revision 4)
+++ trunk/test/tmcsim/cadsimulator/CADSimulatorTest.java	(revision 5)
@@ -2,4 +2,7 @@
 
 import java.rmi.RemoteException;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import javax.swing.JScrollPane;
 import static junit.framework.Assert.assertEquals;
 import static junit.framework.Assert.fail;
@@ -67,5 +70,6 @@
                     {
                         app = new CADSimulator(System.getProperty("CAD_SIM_PROPERTIES"));
-                    } catch (Exception e)
+                    }
+                    catch (Exception e)
                     {
                         fail("Couldn't launch CADSimulator");
@@ -73,5 +77,6 @@
                 }
             });
-        } else
+        }
+        else
         {
             fail("CAD_SIM_PROPERTIES system property not defined.");
@@ -90,24 +95,22 @@
         app.theCoordinator.registerForCallback(ci);
         assertEquals("2", terminals.getText().trim());
-        
+
         SimulationManagerInterface si = new CADSimulatorTest.FakeSimMgr();
         app.theCoordinator.registerForCallback(si);
         assertEquals("Yes", mainPanel.getTextBox("managerConnectedTF").getText().trim());
-        
+
+        Logger cadSimLogger = Logger.getLogger("tmcsim.cadsimulator");
+        cadSimLogger.logp(Level.INFO, "", "", "Sample Info Message.");
+
+        Panel infoPane = mainPanel.getPanel("InfoMessagesPane");
+        TextBox infoText = infoPane.getTextBox("infoMessagesTA");
+        assertEquals(". = Sample Info Message.\n", infoText.getText());
+
         app = null;
-//        app.theViewer.dispose();
-//        Window confirmPopup = null;
-//        confirmPopup = WindowInterceptor.run(new Trigger()
-//        {
-//            public void run()
-//            {
-//                app.theViewer.closeViewer();
-//            }
-//        });
-//        confirmPopup.getButton("OK").click();
     }
 
-    class FakeClient implements CADClientInterface 
+    class FakeClient implements CADClientInterface
     {
+
         @Override
         public void refresh() throws RemoteException
@@ -115,8 +118,9 @@
             throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
         }
-    
     }
+
     class FakeSimMgr implements SimulationManagerInterface
     {
+
         @Override
         public void tick(long theTime) throws RemoteException
@@ -160,7 +164,4 @@
             throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
         }
-    
     }
-    
-    
 }
