public function testGetErrorCodes()
 {
     $errorCodes = array('test');
     $response = new Response(true, $errorCodes);
     $this->assertEquals($errorCodes, $response->getErrorCodes());
 }