Index: trunk/test/tmcsim/cadsimulator/managers/TrafficModelManagerTest.java
===================================================================
--- trunk/test/tmcsim/cadsimulator/managers/TrafficModelManagerTest.java	(revision 204)
+++ trunk/test/tmcsim/cadsimulator/managers/TrafficModelManagerTest.java	(revision 220)
@@ -35,7 +35,4 @@
     }
 
-    /**
-     * Test of readBatchFile method, of class TrafficModelManager.
-     */
     public void testReadBatchFile() throws SimulationException, ParseException
     {
@@ -55,5 +52,19 @@
         assertEquals(expResult, result);
     }
-    
+    /**
+     * Test of readBatchFile method, of class TrafficModelManager.
+     */
+    public void testReadBatchFile2() throws SimulationException, ParseException
+    {
+        System.out.println("readBatchFile blank lines test");
+        String alpha = "    ";
+        String bravo = "187 00:00:37  55 S 6.88 0.2 R";
+        String dataIn = alpha + "\n" + bravo + "\n";
+        Scanner scan = new Scanner(dataIn);
+        
+        LinkedList<TrafficEvent> result = TrafficModelManager.readBatchFile(scan);
+        assertEquals(1,result.size());
+    }
+        
     public void testCreateIncidentMap() throws ParseException
     {
