public function XmlEncoderTest::testDecodeScalarRootAttributes

File

drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Tests/Encoder/XmlEncoderTest.php, line 224

Class

XmlEncoderTest

Namespace

Symfony\Component\Serializer\Tests\Encoder

Code

public function testDecodeScalarRootAttributes() {
  $source = '<?xml version="1.0"?>' . "\n" . '<person gender="M">Peter</person>' . "\n";
  $expected = array(
    '#' => 'Peter',
    '@gender' => 'M',
  );
  $this
    ->assertEquals($expected, $this->encoder
    ->decode($source, 'xml'));
}