1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 21:31:18 +01:00
amp/test/NativeLoopTest.php
2017-03-10 22:20:28 +01:00

15 lines
254 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\NativeLoop;
use Amp\Test\LoopTest;
class NativeLoopLoopTest extends LoopTest {
public function getFactory(): callable {
return function () {
return new NativeLoop;
};
}
}