1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-12 09:09:35 +01:00
parallel/test/Worker/WorkerForkTest.php
2016-08-18 17:36:58 -05:00

16 lines
271 B
PHP

<?php
namespace Amp\Concurrent\Test\Worker;
use Amp\Concurrent\Worker\WorkerFork;
/**
* @group forking
* @requires extension pcntl
*/
class WorkerForkTest extends AbstractWorkerTest {
protected function createWorker() {
return new WorkerFork();
}
}