コード例 #1
0
ファイル: ClientTest.php プロジェクト: Andrewsville/bunny
 public function testCloseChannel()
 {
     $client = new Client();
     $this->assertInstanceof("Bunny\\Channel", $ch = $client->connect()->channel());
     $this->assertInstanceOf("Bunny\\Protocol\\MethodChannelCloseOkFrame", $client->closeChannel($ch));
     $client->disconnect();
 }