public function testGetUuids()
 {
     $uuids = $this->couchClient->getUuids();
     $this->assertEquals(1, count($uuids));
     $this->assertEquals(32, strlen($uuids[0]));
     $uuids = $this->couchClient->getUuids(10);
     $this->assertEquals(10, count($uuids));
 }