blob: 19a5e876615663dfc3619545512c18c1e70ccfb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace React\Tests\EventLoop;
use React\EventLoop\ExtLibevLoop;
class ExtLibevLoopTest extends AbstractLoopTest
{
public function createLoop()
{
if (!class_exists('libev\EventLoop')) {
$this->markTestSkipped('libev tests skipped because ext-libev is not installed.');
}
return new ExtLibevLoop();
}
public function testLibEvConstructor()
{
$loop = new ExtLibevLoop();
}
}
|