1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/test/EventLoopTest.php

22 lines
416 B
PHP
Raw Normal View History

<?php
namespace Amp\Test\Loop;
use Amp\Loop\EventLoop;
2017-01-07 13:45:03 +01:00
use AsyncInterop\Loop\DriverFactory;
use AsyncInterop\Loop\Test;
/**
* @requires extension event
*/
class EventLoopTest extends Test {
public function getFactory() {
$factory = $this->getMockBuilder(DriverFactory::class)->getMock();
$factory->method('create')
2017-01-06 00:21:30 +01:00
->willReturn(new EventLoop);
return $factory;
}
}