/**
  * @dataProvider noIssuerDataProvider
  */
 public function testGetDataWithNonIDEALGatewayDoesNotSetIssuer($xml)
 {
     $this->request->setGateway('another');
     $data = $this->request->getData();
     $this->assertInstanceOf('SimpleXMLElement', $data);
     // Just so the provider remains readable...
     $dom = dom_import_simplexml($data)->ownerDocument;
     $dom->formatOutput = true;
     $this->assertEquals($xml, $dom->saveXML());
 }