0

当尝试运行 phpunit 并覆盖 phpdbg 时,我收到错误“PHPDBG 的此版本不支持代码覆盖率”。我在产生此错误的 PHAR 行中发现:

        if (!\function_exists('PHPUnit\\phpdbg_start_oplog')) {
            throw new \PHPUnit\SebastianBergmann\CodeCoverage\RuntimeException('This build of PHPDBG does not support code coverage');
        }

然后我运行并得到这个结果:

prompt> ev function_exists('phpdbg_start_oplog');
1

正如我所理解的,问题出在 phpdbg_start_oplog 之前的命名空间中。那么,为什么 phpdbg_start_oplog 在 PHAR 中以 PHPUnit 命名空间为前缀?

Sebastian Bergmann 和贡献者的 PHPUnit 9.1.4。

PHP 7.4.1 (cli)(构建时间:2019 年 12 月 28 日 11:16:02)(NTS)

4

1 回答 1

0

您在 PHPUnit(或 PHP-Scoper,构建 PHPUnit 的 PHAR 发行版所涉及的工具之一)中发现了一个错误。我在 GitHub 上为这个问题开了一张票

于 2020-05-08T14:48:31.227 回答