Example #1
0
 public function testStopStartedLaps()
 {
     $event = new Event('name', 'group');
     $this->assertFalse($event->hasStartedLaps());
     $event->startLap();
     $this->assertTrue($event->hasStartedLaps());
     $event->stopStartedLaps();
     $this->assertFalse($event->hasStartedLaps());
 }