mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
29 lines
501 B
PHP
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());
|
|
}
|
|
}
|