public function test_destinations_should_work()
 {
     $returnWebservice = (object) ["ConsultarDestinosDisponiblesResult" => (object) ["LocalidadTO" => [["Codigo" => "1", "Nombre" => "Nombre"]]]];
     $this->soapFake->shouldReceive("ConsultarDestinosDisponibles")->andReturn($returnWebservice);
     $this->soapFake->shouldReceive("__getLastRequest");
     $this->soapFake->shouldReceive("__getLastResponse");
     $places = $this->client->getDestinations("002");
     $this->assertInstanceOf("\\Ochoa\\Type\\PlacesCollection", $places);
     $this->assertGetLogs();
 }