load->library('unit_test'); $this->load->model('pastes'); //self test $test = 1 + 1; $expected_result = 2; $test_name = 'Self test: Adds one plus one'; $this->unit->run($test, $expected_result, $test_name); //manipulation: create paste $_POST['code'] = 'pastes->createPaste(); //paste created, has pid $test = $pid; $expected_result = 'is_string'; $test_name = 'Create paste, has pid'; $this->unit->run($test, $expected_result, $test_name); $pid = str_replace('view/', '', $pid); //manipulation: delete paste $this->pastes->delete_paste($pid); //report echo $this->unit->report(); } }