| 1 | <?php |
||
| 19 | class FunctionalTester extends \Codeception\Actor |
||
| 20 | { |
||
| 21 | use _generated\FunctionalTesterActions; |
||
| 22 | /** |
||
| 23 | * Define custom actions here |
||
| 24 | */ |
||
| 25 | public function seeValidationError($message) |
||
| 26 | { |
||
| 27 | $this->see($message, '.help-block'); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function dontSeeValidationError($message) |
||
| 31 | { |
||
| 32 | $this->dontSee($message, '.help-block'); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |