php codeigniter unit testing code example
Example 1: php codeigniter unit testing
$this->load->library('unit_test');
Example 2: php codeigniter unit testing
$test = 1 + 1;
$expected_result = 2;
$test_name = 'Adds one plus one';
$this->unit->run($test, $expected_result, $test_name);