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