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/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)); } }