/**
  * @test
  */
 public function it_gets_the_expected_values_from_the_getters()
 {
     $response = new Response($this->buildResponse());
     $this->assertEquals('Command', $response->getCommand());
     $this->assertEquals(0, $response->getExitCode());
     $this->assertEquals('Response', $response->getResponse());
     $this->assertEquals(true, $response->getSuccessful());
 }