AlkantarClanX12

Your IP : 18.227.209.101


Current Path : /opt/alt/php83/usr/share/pear/test/XML_Util/tests/
Upload File :
Current File : //opt/alt/php83/usr/share/pear/test/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));
    }
}