public function testSettersAndGetters()
 {
     // Status
     $status = true;
     $this->response->setStatus($status);
     $this->assertSame($status, $this->response->getStatus());
     // Error
     $error = 'missing-value';
     $this->response->setError($error);
     $this->assertSame($error, $this->response->getError());
 }