Author: Badal Surana (badalsurana122@gmail.com)
Inheritance: implements ApaiIO\ResponseTransformer\ResponseTransformerInterface
Example #1
0
 public function testXmlToArray()
 {
     $transformer = new XmlToArray();
     $sampleXML = $this->getSampleXMLResponse();
     $array = $transformer->transform($sampleXML);
     $this->assertInternalType('array', $array);
     $this->assertEquals('Wikipedia Städteverzeichnis', $array['titel']);
     $this->assertEquals('Genf', $array['eintrag']['0']['stichwort']);
 }