我正在使用PHPUnit 3.6.7,PHP_CodeCoverage 1.1.1和Xdebug 2.1.2.当我让PHPUnit将我的代码覆盖率统计信息写入三叶草样式的XML文件时,它偶尔会显示一个紧密的大括号,因为它没有被测试覆盖.
我在网上看到很多关于PHPUnit何时“达到”接近大括号的讨论,但我不明白发生了什么的一般概念.例如,我在这里的一行没有覆盖:
if (is_array($foo)) {
foreach ($foo as $bar) {
if (property_exists($bar, 'baz')) {
return $bar;
}
}
} // this line has 0 coverage
return null;
和这里:
class Foo
{
public $myProperty;
public function myMethod()
{
$this->myProperty = '1';
}
} // this line has 0 coverage
我项目中的其他类没有这个问题;它们的大括号根本不会出现在XML文件中,因此它们不会被列为零覆盖.
据我所知,PHP_CodeCoverage 1.1.2(尚未发布)将让我在一个接近的大括号之后放一个“// @codeCoverageIgnore”注释,但是直到可用,我想知道发生了什么,以便我可以修复我的测试给我完整的报道.什么是经验法则告诉我什么时候花括号应该算作“覆盖”或“未覆盖”?
解决方法:
What’s the rule-of-thumb to tell me when a curly-brace should be counted as “covered” or “not covered”?
有一个"Edge Cases" section in the phpunit documentation
,但显然是不完整的,因为我在最后几天看到:)
我个人从未见过的是你的第二个例子失败了.我也无法重现它:我找不到PHP / xDebug / PHPUnit组合,但这没有用. (转载如下)
你展示的另一个案例也是如此.对于所有我来说,我可以测试两个检测为“不可执行/可达”的闭合括号,就像人们期望的那样.
因此对于这两种情况都不需要// @ codeCoverageIgnore或// @ codeCoverageIgnore [Start | End].
正如@Derick在评论中建议的那样,任何进一步的分析都需要整个文件.
复制
<?php
class Foo
{
public $myProperty;
public function myMethod()
{
$this->myProperty = '1';
}
}
<?php
require __DIR__ . '/closingBrace.php';
class FooTest extends PHPUnit_Framework_TestCase {
public function testMyMethod() {
$x = new Foo();
$x->myMethod();
}
}
运行phpunit –coverage-text fooTest.php
Code Coverage Report
2012-01-12 10:17:32
Summary:
Classes: 100.00% (1/1)
Methods: 100.00% (1/1)
Lines: 100.00% (2/2)
只标记$this-> myProperty =’1′;它是关闭括号可执行文件.