Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 52.14.238.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
phpunit /
php-code-coverage /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxr-xr-x
2018-10-31 09:00
src
[ DIR ]
drwxr-xr-x
2018-10-31 09:00
tests
[ DIR ]
drwxr-xr-x
2018-10-31 09:00
.gitattributes
15
B
-rw-r--r--
2018-10-31 09:00
.gitignore
73
B
-rw-r--r--
2018-10-31 09:00
.php_cs.dist
7.54
KB
-rw-r--r--
2018-10-31 09:00
.travis.yml
890
B
-rw-r--r--
2018-10-31 09:00
ChangeLog-6.1.md
1.42
KB
-rw-r--r--
2018-10-31 09:00
LICENSE
1.52
KB
-rw-r--r--
2018-10-31 09:00
README.md
1.36
KB
-rw-r--r--
2018-10-31 09:00
build.xml
702
B
-rw-r--r--
2018-10-31 09:00
composer.json
1.43
KB
-rw-r--r--
2018-10-31 09:00
phpunit.xml
642
B
-rw-r--r--
2018-10-31 09:00
Save
Rename
[](https://packagist.org/packages/phpunit/php-code-coverage) [](https://travis-ci.org/sebastianbergmann/php-code-coverage) # SebastianBergmann\CodeCoverage **SebastianBergmann\CodeCoverage** is a library that 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](https://getcomposer.org/): 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 ## Using the SebastianBergmann\CodeCoverage API ```php <?php use SebastianBergmann\CodeCoverage\CodeCoverage; $coverage = new CodeCoverage; $coverage->filter()->addDirectoryToWhitelist('/path/to/src'); $coverage->start('<name of test>'); // ... $coverage->stop(); $writer = new \SebastianBergmann\CodeCoverage\Report\Clover; $writer->process($coverage, '/tmp/clover.xml'); $writer = new \SebastianBergmann\CodeCoverage\Report\Html\Facade; $writer->process($coverage, '/tmp/code-coverage-report'); ```