You are here

public function XmlEncoderTest::testEncodeScalar in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/serializer/Tests/Encoder/XmlEncoderTest.php \Symfony\Component\Serializer\Tests\Encoder\XmlEncoderTest::testEncodeScalar()

File

vendor/symfony/serializer/Tests/Encoder/XmlEncoderTest.php, line 32

Class

XmlEncoderTest

Namespace

Symfony\Component\Serializer\Tests\Encoder

Code

public function testEncodeScalar() {
  $obj = new ScalarDummy();
  $obj->xmlFoo = 'foo';
  $expected = '<?xml version="1.0"?>' . "\n" . '<response>foo</response>' . "\n";
  $this
    ->assertEquals($expected, $this->encoder
    ->encode($obj, 'xml'));
}