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

18 lines
345 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() {
if (extension_loaded('uv')) {
return new UvReactor($new = TRUE);
} else {
$this->markTestSkipped(
'php-uv extension not loaded'
);
}
}
}