/**
  * @covers PhraseanetSDK\Response::getCharset
  */
 public function testGetCharset()
 {
     $response = new Response(json_decode($this->getSampleResponse(200)));
     $this->assertEquals('UTF-8', $response->getCharset());
 }