1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php class Xml_helper_test extends CI_TestCase { public function set_up() { $this->helper('xml'); } public function test_xml_convert() { $this->assertEquals('<tag>my & test - </tag>', xml_convert('<tag>my & test - </tag>')); } }