_model = new \Magento\Framework\Convert\Xml(); } public function testXmlToAssoc() { $xmlstr = $this->getXml(); $result = $this->_model->xmlToAssoc(new \SimpleXMLElement($xmlstr)); $this->assertEquals( [ 'one' => '1', 'two' => ['three' => '3', 'four' => '4'], 'five' => [0 => '5', 1 => '6'], ], $result ); } /** * @return string */ protected function getXml() { return << <_>13456 XML; } }