JoliTypo\Tests\JoliTypoTest::testXmlPrefixedContent PHP 메소드

testXmlPrefixedContent() 공개 메소드

    public function testXmlPrefixedContent()
    {
        $fixer = new Fixer(array('Ellipsis'));
        $this->assertInstanceOf('JoliTypo\\Fixer', $fixer);
        $this->assertEquals('<p>Hey &eacute;pic dude&hellip;</p>', $fixer->fix('<?xml encoding="UTF-8"><body><p>Hey épic dude...</p></body>'));
        $this->assertEquals('<p>Hey &eacute;pic dude&hellip;</p>', $fixer->fix('<?xml encoding="ISO-8859-1"><body><p>Hey épic dude...</p></body>'));
    }