代码覆盖中的接口和空类

时间:2016-03-10 15:16:14

标签: php phpunit code-coverage xdebug

我使用PHPUnit 5.2.9,PHP 5.6.19和Xdebug 2.4.0(非RC)以及netbeans IDE。

与任何其他项目一样,我使用了接口和奇怪的空扩展类。由于这些文件不包含可执行代码,为什么它们会列在我的代码覆盖率报告中?更重要的是,它们被0/0方法列为0%。 (如果100%只是为了减少红色,我会很高兴)

我尝试在phpunit.xml文件中排除它们:

<whitelist processUncoveredFilesFromWhitelist="false"> // true make no difference
    <directory suffix=".php">./Annotation</directory>
    <directory suffix=".php">./Cache</directory>
    <exclude>
        <directory suffix=".php">./*Interface</directory>
        <directory suffix=".php">./*/*Interface</directory>
    </exclude>
</whitelist>

但是看起来globs(*)仅对目录有效。但是,我可以使用<file>标记并单独排除它们。但是,当它们不应该被排除在首位时,需要排除很多文件。

我做错了什么还是这种标准行为?

1 个答案:

答案 0 :(得分:3)

您可以尝试改进排除目录,如下所示:

<exclude>
    <directory suffix="Interface.php">.</directory>
</exclude>

另外,您可以直接在忽略代码Blocks of the doc中描述的代码正确标注中进行标记,如下所示:

<?php
/**
 * @codeCoverageIgnore
 */
interface Foo
{
    public function bar();
}

或者您可以在测试用例中标记为覆盖接口类的方法,请参阅更多信息in the doc here。例如:

 /**
 * @test
 * @covers Bar::foo
 * @covers BarInterface::foo
 */
  public function foo()
  {
    ....
  }

希望这个帮助