// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
php73
/
usr
/
share
/
pear
/
test
/
XML_Util
/
tests
[ PARENT ]
EDIT :: 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