Beispiel #1
0
 /** Test of getFuelPerLap method, of class Fuel. */
 @Test
 public void testGetFuelPerLap() {
   System.out.println("getFuelPerLap");
   FuelStrategy instance = new FuelStrategy();
   double expResult = 0.0;
   double result = instance.getFuelPerLap();
   assertEquals(expResult, result, 0.0);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }