mirror of
https://github.com/danog/amp.git
synced 2024-12-04 18:38:17 +01:00
18 lines
334 B
PHP
18 lines
334 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
use Amp\UvReactor;
|
|
|
|
class UvReactorTest extends ReactorTest {
|
|
protected function getReactor() {
|
|
if (extension_loaded("uv")) {
|
|
return new UvReactor();
|
|
} else {
|
|
$this->markTestSkipped(
|
|
"php-uv extension not loaded"
|
|
);
|
|
}
|
|
}
|
|
}
|