1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/test/Loop/EvDriverTest.php

25 lines
471 B
PHP
Raw Permalink Normal View History

<?php
namespace Amp\Test\Loop;
use Amp\Loop\EvDriver;
/**
* @requires extension ev
*/
class EvDriverTest extends DriverTest {
public function getFactory(): callable {
return function () {
return new EvDriver;
};
}
public function testHandle() {
$this->assertInstanceOf(\EvLoop::class, $this->loop->getHandle());
}
2017-03-15 08:32:05 +01:00
public function testSupported() {
$this->assertTrue(EvDriver::isSupported());
}
}