/** Test of getMeanResponseTime method, of class LogEntryInterval. */
 @Test
 public void testGetMeanResponseTime() {
   System.out.println("getMeanResponseTime");
   LogEntryInterval instance = new LogEntryInterval();
   float expResult = 0.0F;
   float result = instance.getMeanResponseTime();
   assertEquals(expResult, result, 0.0);
 }