コード例 #1
0
ファイル: ClientTest.php プロジェクト: niallmccrudden/zf2
    public function testGetAndSetConnection()
    {
        $connection = new Mock('tcp', 'localhost', '11232');

        $client = new Client();
        $this->assertTrue($client->setConnection($connection) instanceof Client);

        $try = $client->getConnection();
        $this->assertEquals($connection, $try);
    }