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

29 lines
501 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\EventDriver;
/**
* @requires extension event
*/
class EventDriverTest extends DriverTest
{
public function getFactory(): callable
{
return function () {
return new EventDriver;
};
}
public function testHandle()
{
$this->assertInstanceOf(\EventBase::class, $this->loop->getHandle());
}
public function testSupported()
{
$this->assertTrue(EventDriver::isSupported());
}
}