Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 8 |
Skip | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 8 |
run() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
__toString() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
namespace Codeception\Step; | |
class Skip extends \Codeception\Step | |
{ | |
public function run() | |
{ | |
throw new \PHPUnit_Framework_SkippedTestError($this->getAction()); | |
} | |
public function __toString() | |
{ | |
return $this->getAction(); | |
} | |
} |