mirror of
https://github.com/danog/amp.git
synced 2024-12-03 09:57:51 +01:00
18 lines
330 B
PHP
18 lines
330 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Test;
|
||
|
|
||
|
use Amp\EvReactor;
|
||
|
|
||
|
class EvReactorTest extends ReactorTest {
|
||
|
protected function getReactor() {
|
||
|
if (extension_loaded("ev")) {
|
||
|
return new EvReactor();
|
||
|
} else {
|
||
|
$this->markTestSkipped(
|
||
|
"ev extension not loaded"
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|