2018-05-31 23:48:38 +02:00
|
|
|
<?php
|
2019-08-12 17:25:59 +02:00
|
|
|
declare(strict_types=1);
|
2018-05-31 23:48:38 +02:00
|
|
|
|
|
|
|
/**
|
2019-08-12 17:25:59 +02:00
|
|
|
* Inherited Methods.
|
2018-05-31 23:48:38 +02:00
|
|
|
* @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)
|
2019-08-12 17:25:59 +02:00
|
|
|
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = null)
|
2018-05-31 23:48:38 +02:00
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD)
|
2019-08-12 13:49:05 +02:00
|
|
|
*/
|
2018-05-31 23:48:38 +02:00
|
|
|
class AcceptanceTester extends \Codeception\Actor
|
|
|
|
{
|
|
|
|
use _generated\AcceptanceTesterActions;
|
|
|
|
|
2019-08-12 17:25:59 +02:00
|
|
|
// Define custom actions here
|
2018-05-31 23:48:38 +02:00
|
|
|
}
|