1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/test/UvLoopTest.php

18 lines
266 B
PHP
Raw Normal View History

2016-06-09 19:57:46 +02:00
<?php
namespace Amp\Test\Loop;
use Amp\Loop\UvLoop;
use Amp\Test\LoopTest;
2016-06-09 19:57:46 +02:00
/**
* @requires extension uv
*/
class UvLoopLoopTest extends LoopTest {
2016-06-09 19:57:46 +02:00
public function getFactory() {
return function () {
return new UvLoop;
};
2016-06-09 19:57:46 +02:00
}
}