PHP SimpleTest / xdebug代码覆盖率测试 - 忽略一些行

时间:2012-06-06 11:15:56

标签: php code-coverage xdebug simpletest

我的SimpleTest / xdebug测试类有问题 - 具体来说,我已经注册了一个关闭函数来关闭我的测试覆盖率并保存结果。

但是,这仍然(正确)显示为从未到达:

if (error_condition) {
    die();
} // This line is never actually reached, and shows up in the report as unreached, confusing the automatic analyzers. 

如果没有避免使用'die'进行退出,而是使用异常,有没有办法将一行标记为“不测试”?

1 个答案:

答案 0 :(得分:0)

我不认为SimpleTest有这个,但是,它甚至不应该把它视为“未涵盖”。它只是无法访问,这不是问题。