php-8.3.3-mac/lib/php/pear/test/XML_Util/tests/CreateCommentTests.php

15 lines
340 B
PHP
Raw Permalink Normal View History

2024-03-11 14:31:54 +03:00
<?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));
}
}