1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/NativeLoopTest.php

15 lines
244 B
PHP
Raw Normal View History

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