1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-27 12:54:55 +01:00
parallel/tests/Worker/WorkerThreadTest.php
Stephen Coakley 3c2979c18f Fix tests
2015-12-11 23:31:50 -06:00

17 lines
292 B
PHP

<?php
namespace Icicle\Tests\Concurrent\Worker;
use Icicle\Concurrent\Worker\WorkerThread;
/**
* @group threading
* @requires extension pthreads
*/
class WorkerThreadTest extends AbstractWorkerTest
{
protected function createWorker()
{
return new WorkerThread();
}
}