Example #1
0
 /** @test */
 public function itShouldParseAttributesAsArray()
 {
     $data = '<data id="12" entry="foo">
     </data>';
     $xml = new SimpleXMLElement($data);
     $this->assertSame(['id' => 12, 'entry' => 'foo'], $xml->attributesAsArray());
 }