mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-15 04:23:14 +03:00
11 lines
277 B
PHP
11 lines
277 B
PHP
<?php
|
|
require_once 'PHP/CodeCoverage/Autoload.php';
|
|
|
|
$coverage = new PHP_CodeCoverage;
|
|
$filter = $coverage->filter();
|
|
|
|
$filter->addFileToBlacklist(__FILE__);
|
|
$filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php');
|
|
|
|
$coverage->start($_SERVER['SCRIPT_FILENAME']);
|