2018-08-03 17:19:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2018-08-11 15:49:46 +02:00
|
|
|
* 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)
|
2018-08-03 17:19:45 +02:00
|
|
|
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
|
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD)
|
2018-08-11 15:49:46 +02:00
|
|
|
*/
|
2018-08-03 17:19:45 +02:00
|
|
|
class FunctionalTester extends \Codeception\Actor
|
|
|
|
{
|
|
|
|
use _generated\FunctionalTesterActions;
|
|
|
|
|
2018-08-11 15:49:46 +02:00
|
|
|
/*
|
|
|
|
* Define custom actions here
|
|
|
|
*/
|
2018-08-03 17:19:45 +02:00
|
|
|
}
|