Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 6 |
Test | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 6 |
__construct(\PHPUnit_Framework_Test $test) | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
getTest() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace Codeception\Event; | |
use \Symfony\Component\EventDispatcher\Event; | |
class Test extends Event | |
{ | |
/** | |
* @var \PHPUnit_Framework_Test | |
*/ | |
protected $test; | |
public function __construct(\PHPUnit_Framework_Test $test) { | |
$this->test = $test; | |
} | |
/** | |
* @return \Codeception\TestCase | |
*/ | |
public function getTest() { | |
return $this->test; | |
} | |