send($frame); $rcvd = $sc2->receive(); $this->assertEquals($frame, $rcvd); } public function testCreatingPair() { [ $sc1, $sc2 ] = StreamChannel::createPair(); $frame = "Hello World"; $sc1->send($frame); $rcvd = $sc2->receive(); $this->assertEquals($frame, $rcvd); } }