public function XmlEncoderTest::testDecode

File

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

Class

XmlEncoderTest

Namespace

Symfony\Component\Serializer\Tests\Encoder

Code

public function testDecode() {
  $source = $this
    ->getXmlSource();
  $obj = $this
    ->getObject();
  $this
    ->assertEquals(get_object_vars($obj), $this->encoder
    ->decode($source, 'xml'));
}