blob: ab41c9f362e0d40a934501e0983fc7676206c7b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace React\Tests\EventLoop;
use React\EventLoop\ExtEvLoop;
class ExtEvLoopTest extends AbstractLoopTest
{
public function createLoop()
{
if (!class_exists('EvLoop')) {
$this->markTestSkipped('ExtEvLoop tests skipped because ext-ev extension is not installed.');
}
return new ExtEvLoop();
}
}
|