Наследование: implements Kraken\Loop\Bridge\React\ReactLoopInterface
Пример #1
0
 /**
  *
  */
 public function testApiStop_NeverStopsLoop()
 {
     $this->markTestSkipped('Seems there is a problem with PHPUnit 5.2 compatibility here.');
     $loop = $this->createLoopMock();
     $react = new ReactLoop($loop);
     $loop->expects($this->never())->method('stop');
     $react->stop();
 }