0

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

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

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

除了避免使用“死”退出,而是使用异常,有没有办法将排队标记为“不测试”?

4

1 回答 1

0

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

于 2012-06-15T20:35:13.100 回答