mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
namespace Amp\Test\Loop;
|
|
|
|
use Amp\Loop\NativeLoop;
|
|
use Amp\Test\LoopTest;
|
|
|
|
class NativeLoopLoopTest extends LoopTest {
|
|
public function getFactory() {
|
|
return function () {
|
|
return new NativeLoop;
|
|
};
|
|
}
|
|
}
|