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
348 B
PHP
Raw Normal View History

2014-06-11 18:33:15 +02:00
<?php
namespace AlertTest;
use Alert\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'
);
}
}
}