Doctrine\Tests\CouchDB\HTTP\StreamClientTestCase::testArrayResponse PHP Метод

testArrayResponse() публичный Метод

public testArrayResponse ( )
    public function testArrayResponse()
    {
        $db = new HTTP\StreamClient();
        try {
            $db->request('PUT', '/' . $this->getTestDatabase() . '');
        } catch (\Exception $e) {
            /* Ignore */
        }
        $response = $db->request('GET', '/_all_dbs');
        $this->assertTrue($response instanceof HTTP\Response);
        $this->assertTrue(is_array($response->body));
        $this->assertTrue(in_array(\Doctrine\Tests\ODM\CouchDB\TestUtil::getTestDatabase(), $response->body));
    }