24

我使用 PHPUnit 已经有一段时间了,看起来我可能需要将我的测试分成组,这些组将作为单独的phpunit. 主要原因是我的大多数测试需要在单独的进程中运行,而由于此处记录的问题,有些实际上不能在单独的进程中运行。我想做的是编写一个 bash 脚本,该脚本会触发多次执行phpunit,每个执行都配置为使用不同的设置运行不同的测试。

所以我的问题是:有没有办法聚合多次phpunit执行的代码覆盖率结果?我可以直接通过 PHPUnit 本身或使用其他工具来做到这一点吗?phpunit是否有可能从使用 PHPUnit 的测试套件概念的一次运行中得到我正在寻找的东西?

4

1 回答 1

23

使用--coverage-phpPHPUnit 的 " " 选项使其将覆盖数据写入序列化PHP_CodeCoverage对象,然后使用 组合它们PHP_CodeCoverage::merge,如下所示:

<?php
/**
 * Deserializes PHP_CodeCoverage objects from the files passed on the command line,
 * combines them into a single coverage object and creates an HTML report of the
 * combined coverage.
 */

if ($argc <= 2) {
  die("Usage: php generate-coverage-report.php cov-file1 cov-file2 ...");
}

// Init the Composer autoloader
require realpath(dirname(__FILE__)) . '/../vendor/autoload.php';

foreach (array_slice($argv, 1) as $filename) {
  // See PHP_CodeCoverage_Report_PHP::process
  // @var PHP_CodeCoverage
  $cov = unserialize(file_get_contents($filename));
  if (isset($codeCoverage)) {
    $codeCoverage->filter()->addFilesToWhitelist($cov->filter()->getWhitelist());
    $codeCoverage->merge($cov);
  } else {
    $codeCoverage = $cov;
  }
}

print "\nGenerating code coverage report in HTML format ...";

// Based on PHPUnit_TextUI_TestRunner::doRun
$writer = new PHP_CodeCoverage_Report_HTML(
  'UTF-8',
  false, // 'reportHighlight'
  35, // 'reportLowUpperBound'
  70, // 'reportHighLowerBound'
  sprintf(
    ' and <a href="http://phpunit.de/">PHPUnit %s</a>',
    PHPUnit_Runner_Version::id()
      )
  );

$writer->process($codeCoverage, 'coverage');

print " done\n";
print "See coverage/index.html\n";

您也可以使用名为 的工具合并文件phpcov,如下所述:https ://github.com/sebastianbergmann/phpunit/pull/685

于 2013-02-14T12:28:42.907 回答