我在 CodeIgniter 中有以下内容:
class Foo extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->library('unit_test');
}
public function test()
{
$ip = '1.2.3.4';
$this->unit->run($ip,'1.2.3.4');
}
}
上述测试失败。为什么在这个单元测试中断言等于失败?如果我传入一个没有periods .
它的字符串,它会正确断言。
更新
我刚刚测试了它,结果是通过
echo $this->unit->report();
返回失败状态。