Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 9 |
Comment | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 9 |
__toString() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
getHtmlAction() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
run() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace Codeception\Step; | |
class Comment extends \Codeception\Step { | |
public function __toString() { | |
return $this->getAction(); | |
} | |
public function getHtmlAction() { | |
return '<strong>' . $this->getAction(). '</strong>'; | |
} | |
public function run() | |
{ | |
// don't do anything, let's rest | |
} | |
} |