mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 12:54:55 +01:00
17 lines
292 B
PHP
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();
|
|
}
|
|
}
|