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

15 lines
254 B
PHP
Raw Normal View History

2016-05-27 15:05:25 -05:00
<?php
namespace Amp\Test\Loop;
use Amp\Loop\NativeLoop;
use Amp\Test\LoopTest;
2016-05-27 15:05:25 -05:00
class NativeLoopLoopTest extends LoopTest {
public function getFactory(): callable {
return function () {
return new NativeLoop;
};
2016-05-27 15:05:25 -05:00
}
}