BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
opt
/
cpanel
/
ea-php72
/
root
/
usr
/
share
/
tests
/
pear
/
XML_Util
/
tests
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 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)); } }
Save
Cancel