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