2015-09-23 05:22:02 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
2016-12-29 18:35:34 +03:00
|
|
|
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
|
2015-09-23 05:22:02 +03:00
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD)
|
|
|
|
*/
|
|
|
|
class UnitTester extends \Codeception\Actor
|
|
|
|
{
|
|
|
|
use _generated\UnitTesterActions;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define custom actions here
|
|
|
|
*/
|
|
|
|
}
|