/
Ladlen
/
apple
Обзор
Документация
Войти
/
Ladlen
/
apple
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
frontend/tests/_support/FunctionalTester.php
33 строки
811 B
Ladlen
first commit
22 апр 2020, 02:29
22 апр 2020, 02:29
805134f
Код
Авторство
О чём код?
<?php namespace frontend\tests; /** * Inherited Methods * @method void wantToTest($text) * @method void wantTo($text) * @method void execute($callable) * @method void expectTo($prediction) * @method void expect($prediction) * @method void amGoingTo($argumentation) * @method void am($role) * @method void lookForwardTo($achieveValue) * @method void comment($description) * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL) * * @SuppressWarnings(PHPMD) */ class FunctionalTester extends \Codeception\Actor { use _generated\FunctionalTesterActions; public function seeValidationError($message) { $this->see($message, '.help-block'); } public function dontSeeValidationError($message) { $this->dontSee($message, '.help-block'); } }