2017-01-05 19:57:35 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Test\Loop;
|
|
|
|
|
2017-03-12 11:21:44 +01:00
|
|
|
use Amp\Loop\EventDriver;
|
2017-01-05 19:57:35 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @requires extension event
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
class EventDriverTest extends DriverTest
|
|
|
|
{
|
|
|
|
public function getFactory(): callable
|
|
|
|
{
|
2017-03-10 21:31:57 +01:00
|
|
|
return function () {
|
2017-03-12 11:21:44 +01:00
|
|
|
return new EventDriver;
|
2017-03-10 21:31:57 +01:00
|
|
|
};
|
2017-01-05 19:57:35 +01:00
|
|
|
}
|
2017-03-13 13:56:46 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testHandle()
|
|
|
|
{
|
2017-03-13 13:56:46 +01:00
|
|
|
$this->assertInstanceOf(\EventBase::class, $this->loop->getHandle());
|
|
|
|
}
|
2017-03-15 08:32:05 +01:00
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function testSupported()
|
|
|
|
{
|
2017-03-15 08:32:05 +01:00
|
|
|
$this->assertTrue(EventDriver::isSupported());
|
|
|
|
}
|
2017-01-05 19:57:35 +01:00
|
|
|
}
|