1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-09 14:18:23 +01:00
parallel/tests/Worker/WorkerProcessTest.php

13 lines
235 B
PHP
Raw Normal View History

2015-08-29 03:55:30 +02:00
<?php
namespace Icicle\Tests\Concurrent\Worker;
use Icicle\Concurrent\Worker\WorkerProcess;
class WorkerProcessTest extends AbstractWorkerTest
{
protected function createWorker()
{
return new WorkerProcess();
}
}