/**
  * Tests conversion of {@link PaymentRequest} from XML file for dcc rate lookup payment types.
  */
 public function testPaymentRequestXmlFromFileDccLookup()
 {
     $path = SampleXmlValidationUtils::DCC_RATE_LOOKUP_PAYMENT_REQUEST_XML_PATH;
     $prefix = __DIR__ . '/../../../resources';
     $xml = file_get_contents($prefix . $path);
     //unmarshal back to response
     /* @var PaymentRequest $fromXmlRequest */
     $fromXmlRequest = new PaymentRequest();
     $fromXmlRequest = $fromXmlRequest->fromXml($xml);
     SampleXmlValidationUtils::checkUnmarshalledDccRateLookUpPaymentRequest($fromXmlRequest, $this);
 }