mirror of
https://github.com/danog/parallel.git
synced 2024-12-04 18:47:50 +01:00
17 lines
325 B
PHP
17 lines
325 B
PHP
<?php
|
|
namespace Icicle\Tests\Concurrent\Threading;
|
|
|
|
use Icicle\Concurrent\Threading\Parcel;
|
|
use Icicle\Tests\Concurrent\Sync\AbstractParcelTest;
|
|
|
|
/**
|
|
* @requires extension pthreads
|
|
*/
|
|
class ParcelTest extends AbstractParcelTest
|
|
{
|
|
protected function createParcel($value)
|
|
{
|
|
return new Parcel($value);
|
|
}
|
|
}
|