php-8.3.11-linux/lib/php/pear/test/XML_Util/tests/CreateCDataSectionTests.php

15 lines
362 B
PHP
Raw Normal View History

2024-09-23 22:19:00 +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));
}
}