1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/test/UvLoopTest.php
2017-03-10 21:31:57 +01:00

18 lines
266 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\UvLoop;
use Amp\Test\LoopTest;
/**
* @requires extension uv
*/
class UvLoopLoopTest extends LoopTest {
public function getFactory() {
return function () {
return new UvLoop;
};
}
}