ParaTest\Console\Testers\PHPUnit::hasCoverage PHP Method

hasCoverage() protected method

Return whether or not code coverage information should be collected.
protected hasCoverage ( $options ) : boolean
$options
return boolean
    protected function hasCoverage($options)
    {
        $isFileFormat = isset($options['coverage-html']) || isset($options['coverage-clover']);
        $isPHP = isset($options['coverage-php']);
        return $isFileFormat && !$isPHP;
    }