public function XmlEncoderTest::testDecodeScalar

File

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

Class

XmlEncoderTest

Namespace

Symfony\Component\Serializer\Tests\Encoder

Code

public function testDecodeScalar() {
  $source = '<?xml version="1.0"?>' . "\n" . '<response>foo</response>' . "\n";
  $this
    ->assertEquals('foo', $this->encoder
    ->decode($source, 'xml'));
}