| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | <?phpnamespace Helper;use Codeception;// here you can define custom actions// all public methods declared in helper class will be available in $I/** * Class Unit * @package Helper */class Unit extends Codeception\Module{    /**     * HOOK: used after configuration is loaded     */    public function _initialize()    {    }    /**     * HOOK: on every Actor class initialization     */    public function _cleanup()    {    }    /**     * HOOK: before suite     *     * @param array $settings     */    public function _beforeSuite($settings = [])    {    }    /**     * HOOK: after suite     **/    public function _afterSuite()    {    }    /**     * HOOK: before each step     *     * @param Codeception\Step $step*     */    public function _beforeStep(Codeception\Step $step)    {    }    /**     * HOOK: after each step     *     * @param Codeception\Step $step     */    public function _afterStep(Codeception\Step $step)    {    }    /**     * HOOK: before each suite     *     * @param Codeception\TestCase $test     */    public function _before(Codeception\TestCase $test)    {    }    /**     * HOOK: before each suite     *     * @param Codeception\TestCase $test     */    public function _after(Codeception\TestCase $test)    {    }    /**     * HOOK: on fail     *     * @param Codeception\TestCase $test     * @param $fail     */    public function _failed(Codeception\TestCase $test, $fail)    {    }}
 |