예제 #1
0
 /**
  * Test calculating the total lap time based on bad sector times
  */
 public function testCalculatingLapTimeFromBadSectorTimes()
 {
     // Init new lap
     $lap = new Lap();
     $lap->addSectorTime(53.2312);
     $lap->addSectorTime(32.299);
     // Third is missing
     // .....
     // Test lap time
     $this->assertNull($lap->getTime());
 }