sty*_*ymo 23 php phpunit unit-testing code-coverage
我一直在使用PHPUnit一段时间了,它开始看起来像我可能需要将我的测试分解为将作为单独执行的组运行phpunit
.主要原因是我的大多数测试都需要在不同的进程中运行,而有些实际上不能在单独的进程中运行,因为这里记录了一个问题.我想做的是编写一个bash脚本,触发几个执行phpunit
,每个执行配置为使用不同的设置运行不同的测试.
所以我的问题是:有没有办法聚合多次phpunit
执行的代码覆盖率结果?我可以直接通过PHPUnit本身或使用其他工具吗?在phpunit
使用PHPUnit的测试套件概念的一次运行中,是否有可能获得我正在寻找的东西?
Ric*_*ich 22
使用--coverage-php
PHPUnit 的" "选项让它将coverage数据写为序列化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";
Run Code Online (Sandbox Code Playgroud)
您也可以使用名为的工具合并文件phpcov
,如下所述:https://github.com/sebastianbergmann/phpunit/pull/685
归档时间: |
|
查看次数: |
3399 次 |
最近记录: |