henrikbjorn/phpspec-code-coverage
最新稳定版本:3.0.1
Composer 安装命令:
composer require henrikbjorn/phpspec-code-coverage
包简介
Integrates CodeCoverage with PhpSpec
README 文档
README
DEPRECATED: CodeCoverage should not be used with spec testing in order to see how good your tests are. For that reason, and because I don't use it myself, this library is deprecated and will not receive any updates etc. For a maintained fork, you can check leanphp/phpspec-code-coverage.
Install with Composer:
composer require --dev henrikbjorn/phpspec-code-coverage
Enable it in your phpspec.yml file:
extensions: - PhpSpecCodeCoverage\CodeCoverageExtension
Now run your specs with the normal phpspec run and voilà your code coverage will be available in
coverage.
Configuration Options
It is possible to control a bit out how the code coverage is done through phpspec.yml. This is done by
adding a hash of options to the extension key.
whitelisttakes an array of directories to whitelist (default:lib,src).whitelist_filestakes an array of files to whitelist (default: none).blacklisttakes an array of directories to blacklistblacklist_filestakes an array of files to blacklistformat(optional) could be one or many of:clover,php,text,html(defaulthtml)outputtakes a location relative to the place you are runningphpspec run(default:coverage). If you configure multiple formats, takes a hash of format:output e.g.
extensions: PhpSpecCodeCoverage\CodeCoverageExtension: format: - html - clover output: html: coverage clover: coverage.xml
show_uncovered_filesfor including uncovered files in coverage reports (defaulttrue)lower_upper_boundfor coverage (default35)high_lower_boundfor coverage (default70)
Note: If the clover format option requires you to also set an output location!
Running with phpdbg (PHP 7.x and up)
For faster execution, run phpspec with phpdbg instead of xdebug:
phpdbg -qrr phpspec run
Note: The code coverage extension only works with phpdbg if you're using PHP 7. In PHP 5.6, phpdbg is missing the phpdbg_start_oplog function which is required to generate code coverage.
统计信息
- 总下载量: 797.61k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 100
- 点击次数: 1
- 依赖项目数: 313
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2013-05-29