18 lines
361 B
PHP
Executable File
18 lines
361 B
PHP
Executable File
<?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();
|
|
}
|
|
}
|