Files
parallel/test/Worker/WorkerThreadTest.php
Aaron Piotrowski da84a772cf Port to Amp
2016-08-18 11:04:48 -05:00

18 lines
287 B
PHP

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