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

15 lines
362 B
PHP
Raw Permalink Normal View History

2023-04-27 18:29:57 +03:00
<?php
class CreateCDataSectionTests extends AbstractUnitTests
{
/**
* @covers XML_Util::createCDataSection()
*/
public function testCreateCDataSectionBasicUsage()
{
$original = "I am content.";
$expected ="<![CDATA[I am content.]]>";
$this->assertEquals($expected, XML_Util::createCDataSection($original));
}
}