PEAR2_Pyrus_Developer-0.3.1 › PEAR2_Pyrus_Developer-0.3.1/php/PEAR2/Pyrus/Developer/CoverageAnalyzer/SourceFile/PerTest.php
- PEAR2_Pyrus_Developer-0.3.1/
- customcommand/
- PEAR2_Pyrus_Developer/
- pear2.php.net/
- PEAR2_Pyrus_Developer/
- data/
- PEAR2_Pyrus_Developer/
- php/
- PEAR2/
- Autoload.php
- Exception.php
- MultiErrors/
- MultiErrors.php
- Pyrus/
- Developer/
- CoverageAnalyzer/
- Creator/
- PackageFile/
- Runphpt/
- Developer/
- PEAR2/
- www/
- customcommand/
- package.xml
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
<?php
namespace PEAR2\Pyrus\Developer\CoverageAnalyzer\SourceFile {
use PEAR2\Pyrus\Developer\CoverageAnalyzer\Aggregator,
PEAR2\Pyrus\Developer\CoverageAnalyzer\AbstractSourceDecorator;
class PerTest extends \PEAR2\Pyrus\Developer\CoverageAnalyzer\SourceFile
{
protected $testname;
function __construct($path, Aggregator $agg, $testpath, $sourcepath, $testname, $coverage = true)
{
$this->testname = $testname;
parent::__construct($path, $agg, $testpath, $sourcepath, $coverage);
}
function setCoverage()
{
$this->coverage = $this->aggregator->retrieveCoverageByTest($this->path, $this->testname);
}
function coveredLines()
{
$info = $this->aggregator->coverageInfoByTest($this->path, $this->testname);
return $info[0];
}
function render(AbstractSourceDecorator $decorator = null)
{
if ($decorator === null) {
$decorator = new DefaultSourceDecorator('.');
}
return $decorator->render($this, $this->testname);
}
function coveragePercentage()
{
return $this->aggregator->coveragePercentage($this->path, $this->testname);
}
function coverageInfo()
{
return $this->aggregator->coverageInfoByTest($this->path, $this->testname);
}
}
}
?>
EOF
