1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace Codeception\Test\Feature;
use Codeception\Test\Descriptor;
use Codeception\Test\Interfaces\StrictCoverage;
trait CodeCoverage
{
/**
* @return \PHPUnit\Framework\TestResult
*/
abstract public function getTestResultObject();
public function codeCoverageStart()
{
$codeCoverage = $this->getTestResultObject()->getCodeCoverage();
if (!$codeCoverage) {
return;
}
$codeCoverage->start(Descriptor::getTestSignature($this));
}
public function codeCoverageEnd($status, $time)
{
$codeCoverage = $this->getTestResultObject()->getCodeCoverage();
if (!$codeCoverage) {
return;
}
if ($this instanceof StrictCoverage) {
$linesToBeCovered = $this->getLinesToBeCovered();
$linesToBeUsed = $this->getLinesToBeUsed();
} else {
$linesToBeCovered = [];
$linesToBeUsed = [];
}
try {
$codeCoverage->stop(true, $linesToBeCovered, $linesToBeUsed);
} catch (\PHP_CodeCoverage_Exception $cce) {
if ($status === \Codeception\Test\Test::STATUS_OK) {
$this->getTestResultObject()->addError($this, $cce, $time);
}
}
}
}