BossBey File Manager
PHP:
8.3.30
OS:
Linux
User:
www-data
Root
/
usr
/
local
/
lib
/
php
/
test
/
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