/** * Tests conversion of {@link PaymentRequest} from XML file for payer-new payment types. */ public function testPaymentRequestXmlFromFileCardDelete() { $path = SampleXmlValidationUtils::CARD_DELETE_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::checkUnmarshalledCardDeletePaymentRequest($fromXmlRequest, $this); }