gpt4 book ai didi

php - 从 PHPUnit 代码覆盖率中排除 PHP 接口(interface)

转载 作者:可可西里 更新时间:2023-11-01 01:08:33 25 4
gpt4 key购买 nike

我有一个 PHPUnit 测试,用于测试名为 HelpTokenizerTest 的类。此类实现 TokenizerInterface。出于某种奇怪的原因,我无法将 TokenizerInterface 从代码覆盖范围中排除。

尽管使用了@codeCoverageIgnore 甚至@codeCoverageIgnoreStart/End,但它在代码覆盖率报告中显示为未覆盖。

有什么想法吗?

我不希望该接口(interface)包含在我的测试范围内,因为它什么都不做。测试接口(interface)有什么意义。

最佳答案

使用 phpunit.xml 时,您可以设置过滤器以排除具有特定名称、特定文件夹或特定扩展名的文件。

参见 the documentation for it

示例:

<testsuite name="Application Test Suite">
<directory>./application/</directory>
</testsuite>

<filter>
<blacklist>
HERE
</blacklist>
or alternatively
<whitelist>
<directory suffix=".php">../library/</directory>
<directory suffix=".php">../application/</directory>
<exclude>
AND HERE
<directory suffix=".phtml">../application/</directory>
</exclude>
</whitelist>
</filter>

关于php - 从 PHPUnit 代码覆盖率中排除 PHP 接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6220808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com