Current Path :
/
home
/
develito
/
php
/
tests
/
XML_Util
/
tests
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/php/tests/XML_Util/tests/CreateCDataSectionTests.php
<?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)); } }