1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/Loop/UvDriverTest.php
2018-06-18 20:00:01 +02:00

30 lines
532 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\UvDriver;
/**
* @requires extension uv
*/
class UvDriverTest extends DriverTest
{
public function getFactory(): callable
{
return function () {
return new UvDriver;
};
}
public function testHandle()
{
$handle = $this->loop->getHandle();
$this->assertTrue(\is_resource($handle) || $handle instanceof \UVLoop);
}
public function testSupported()
{
$this->assertTrue(UvDriver::isSupported());
}
}