run() public method

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