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: CreateCommentTests.php
<?php class CreateCommentTests extends AbstractUnitTests { /** * @covers XML_Util::createComment() */ public function testCreateCommentBasicUsage() { $original = "I am comment."; $expected = "<!-- I am comment. -->"; $this->assertEquals($expected, XML_Util::createComment($original)); } }
Save
Cancel