public function XMLExporterTest::testCData in Loft Data Grids 7.2
File
- vendor/
aklump/ loft_data_grids/ tests/ phpunit/ XMLExporterTest.php, line 22 - Tests for the XMLExporter class
Class
Namespace
AKlump\LoftDataGridsCode
public function testCData() {
$data = new ExportData();
$data
->add('title', '<h1>Some</h1>');
$this->exporter
->setData($data);
$control = '<?xml version="1.0"?>
<data><page id="0"><record id="0"><title><![CDATA[<h1>Some</h1>]]></title></record></page></data>
';
$this
->assertSame($control, $this->exporter
->export());
}