1
0
mirror of https://github.com/danog/amp.git synced 2024-12-13 01:47:33 +01:00
amp/test/UvReactorTest.php

18 lines
332 B
PHP
Raw Normal View History

2014-06-11 18:33:15 +02:00
<?php
2014-09-23 04:38:32 +02:00
namespace Amp\Test;
2014-09-23 04:38:32 +02:00
use Amp\UvReactor;
2014-06-11 18:33:15 +02:00
class UvReactorTest extends ReactorTest {
protected function getReactor() {
2015-07-20 21:42:56 +02:00
if (extension_loaded("uv")) {
2015-07-21 04:24:51 +02:00
return new UvReactor;
2014-06-11 18:33:15 +02:00
} else {
$this->markTestSkipped(
2015-07-20 21:42:56 +02:00
"php-uv extension not loaded"
2014-06-11 18:33:15 +02:00
);
}
}
}