public function loopTick(TimerInterface $timer)
 {
     // Expect tests not to take too long.
     $this->loops++;
     if ($this->loops > 200) {
         throw new \Exception('time out failure');
     }
     parent::loopTick($timer);
 }