Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 13 |
PrintResult | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 13 |
__construct(\PHPUnit_Framework_TestResult $result, \PHPUnit_Util_Printer $printer) | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
|||
getPrinter() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
getResult() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
namespace Codeception\Event; | |
use \Symfony\Component\EventDispatcher\Event; | |
class PrintResult extends Event | |
{ | |
/** | |
* @var \PHPUnit_Framework_TestResult | |
*/ | |
protected $result; | |
/** | |
* @var \PHPUnit_Util_Printer | |
*/ | |
protected $printer; | |
function __construct(\PHPUnit_Framework_TestResult $result, \PHPUnit_Util_Printer $printer) | |
{ | |
$this->result = $result; | |
$this->printer = $printer; | |
} | |
/** | |
* @return \PHPUnit_Util_Printer | |
*/ | |
public function getPrinter() | |
{ | |
return $this->printer; | |
} | |
/** | |
* @return \PHPUnit_Framework_TestResult | |
*/ | |
public function getResult() | |
{ | |
return $this->result; | |
} | |
} |