tick() public method

public tick ( )
Example #1
0
 /**
  *
  */
 public function testApiTick_NeverTicksLoop()
 {
     $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('tick');
     $react->tick();
 }