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 |
getName() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
__toString() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
getHtmlAction() | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace Codeception\Step; | |
class Comment extends \Codeception\Step { | |
public function getName() { | |
return 'Comment'; | |
} | |
public function __toString() { | |
return $this->getAction(); | |
} | |
public function getHtmlAction() { | |
return '<strong>' . $this->getAction(). '</strong>'; | |
} | |
} |