blob: 49f49e1661ae48467706bf02c2f5fc58e4e060df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
require_once(BASEPATH.'helpers/xml_helper.php');
class Xml_helper_test extends CI_TestCase
{
public function test_xml_convert()
{
$this->assertEquals('<tag>my & test - </tag>', xml_convert('<tag>my & test - </tag>'));
}
}
|