Skip to content

Library that provides collection, processing, and rendering functionality for PHP code coverage information.

License

Notifications You must be signed in to change notification settings

hype09/php-code-coverage

Repository files navigation

phpunit/php-code-coverage

Latest Stable VersionCI StatusType Coveragecodecov

Provides collection, processing, and rendering functionality for PHP code coverage information.

Installation

You can add this library as a local, per-project dependency to your project using Composer:

composer require phpunit/php-code-coverage 

If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:

composer require --dev phpunit/php-code-coverage 

Usage

<?phpdeclare(strict_types=1); useSebastianBergmann\CodeCoverage\Filter; useSebastianBergmann\CodeCoverage\Driver\Selector; useSebastianBergmann\CodeCoverage\CodeCoverage; useSebastianBergmann\CodeCoverage\Report\Html\FacadeasHtmlReport; $filter = newFilter; $filter->includeDirectory('/path/to/directory'); $coverage = newCodeCoverage( (newSelector)->forLineCoverage($filter), $filter ); $coverage->start('<name of test>'); // ...$coverage->stop(); (newHtmlReport)->process($coverage, '/tmp/code-coverage-report');

About

Library that provides collection, processing, and rendering functionality for PHP code coverage information.

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP66.5%
  • HTML33.0%
  • Other0.5%