/**
  * @covers PhraseanetSDK\Response::getUri
  */
 public function testGetUri()
 {
     $response = new Response(json_decode($this->getSampleResponse(200)));
     $this->assertEquals('/api/v1/databoxes/list/', $response->getUri());
 }