/
opt
/
cloudlinux
/
alt-php56
/
root
/
usr
/
share
/
pear
/
test
/
XML_Util
/
tests
/
Upload Filee
HOME
<?php class CreateCDataSectionTests extends AbstractUnitTests { /** * @covers XML_Util::createCDataSection() */ public function testCreateCDataSectionBasicUsage() { $original = "I am content."; $expected ="<![CDATA[I am content.]]>"; $this->assertEquals($expected, XML_Util::createCDataSection($original)); } }