init
This commit is contained in:
17
vendor/react/event-loop/tests/Timer/LibEvTimerTest.php
vendored
Executable file
17
vendor/react/event-loop/tests/Timer/LibEvTimerTest.php
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace React\Tests\EventLoop\Timer;
|
||||
|
||||
use React\EventLoop\LibEvLoop;
|
||||
|
||||
class LibEvTimerTest extends AbstractTimerTest
|
||||
{
|
||||
public function createLoop()
|
||||
{
|
||||
if (!class_exists('libev\EventLoop')) {
|
||||
$this->markTestSkipped('libev tests skipped because ext-libev is not installed.');
|
||||
}
|
||||
|
||||
return new LibEvLoop();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user