1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00

Update channel test to use createSocketPair

This commit is contained in:
coderstephen 2015-08-07 01:38:53 -05:00
parent 078f915081
commit 18c23ef88d

View File

@ -10,7 +10,7 @@ class ChannelTest extends TestCase
{
public function testCreate()
{
list($a, $b) = Channel::create();
list($a, $b) = Channel::createSocketPair();
$this->assertInternalType('resource', $a);
$this->assertInternalType('resource', $b);
@ -18,7 +18,7 @@ class ChannelTest extends TestCase
public function testClose()
{
list($a, $b) = Channel::create();
list($a, $b) = Channel::createSocketPair();
$a = new Channel($a);
$b = new Channel($b);
@ -35,7 +35,7 @@ class ChannelTest extends TestCase
public function testSendReceive()
{
Coroutine\create(function () {
list($a, $b) = Channel::create();
list($a, $b) = Channel::createSocketPair();
$a = new Channel($a);
$b = new Channel($b);
@ -52,7 +52,7 @@ class ChannelTest extends TestCase
*/
public function testThreadTransfer()
{
list($a, $b) = Channel::create();
list($a, $b) = Channel::createSocketPair();
$a = new Channel($a);
$b = new Channel($b);