1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/test/Loop/NativeDriverTest.php

18 lines
330 B
PHP
Raw Normal View History

2016-05-27 22:05:25 +02:00
<?php
namespace Amp\Test\Loop;
use Amp\Loop\NativeDriver;
2016-05-27 22:05:25 +02:00
class NativeDriverTest extends DriverTest {
public function getFactory(): callable {
return function () {
return new NativeDriver;
};
2016-05-27 22:05:25 +02:00
}
public function testHandle() {
$this->assertNull($this->loop->getHandle());
}
2016-05-27 22:05:25 +02:00
}