Doctrine\Tests\OXM\Marshaller\MarshallerTest::itShouldHandleAllValidXml PHP Method

itShouldHandleAllValidXml() public method

    public function itShouldHandleAllValidXml()
    {
        $simple = $this->marshaller->unmarshalFromString('<?xml version="1.0" encoding="UTF-8"?><simple-with-field id="1"/>');
        $this->assertEquals(1, $simple->id);
        $simple = $this->marshaller->unmarshalFromString(' <?xml version="1.0" encoding="UTF-8"?><simple-with-field id="1"/>');
        $this->assertEquals(1, $simple->id);
        $simple = $this->marshaller->unmarshalFromString(' <?xml version="1.0" encoding="UTF-8"?><simple-with-field

        id="1"/>');
        $this->assertEquals(1, $simple->id);
        $simple = $this->marshaller->unmarshalFromString(' <?xml version="1.0" encoding="UTF-8"?>
        <!-- Comment -->
        <simple-with-field id="1"/><!-- comment2 -->');
        $this->assertEquals(1, $simple->id);
    }