/**
  * Tests conversion of {@link PaymentRequest} from XML file for false positive reason code.
  */
 public function testPaymentRequestXmlFromFileFalsePositiveReasonCodeHold()
 {
     $path = SampleXmlValidationUtils::HOLD_PAYMENT_REASON_FALSE_REQUEST_XML_PATH;
     $prefix = __DIR__ . '/../../../resources';
     $xml = file_get_contents($prefix . $path);
     //unmarshal back to request
     /* @var PaymentRequest $fromXmlRequest */
     $fromXmlRequest = new PaymentRequest();
     $fromXmlRequest = $fromXmlRequest->fromXml($xml);
     SampleXmlValidationUtils::checkUnmarshalledHoldReasonHoldPaymentRequest($fromXmlRequest, $this);
 }