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