1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/test/Worker/WorkerThreadTest.php
2016-08-21 23:40:48 -05:00

16 lines
309 B
PHP

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