php-7.4.27-mk1-mac/lib/php/pear/test/XML_Util/tests/CreateCommentTests.php

15 lines
340 B
PHP
Raw Permalink Normal View History

2023-04-27 18:29:57 +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));
}
}