for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doyo\PhpSpec\CodeCoverage;
use Doyo\Behat\Coverage\Bridge\CodeCoverage\Processor as BaseProcessor;
use Doyo\Behat\Coverage\Bridge\CodeCoverage\TestCase;
class Processor extends BaseProcessor implements ProcessorInterface
{
private $testCase;
public function setCurrentTestCase(TestCase $testCase)
$this->testCase = $testCase;
}
public function getCurrentTestCase(): TestCase
return $this->testCase;