Port to Amp

This commit is contained in:
Aaron Piotrowski
2016-08-18 11:04:48 -05:00
parent 54810f1d67
commit da84a772cf
105 changed files with 1369 additions and 1400 deletions

View File

@@ -0,0 +1,17 @@
<?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();
}
}