2016-05-10 15:07:32 +03:00
|
|
|
<?php
|
2019-02-20 22:58:52 +03:00
|
|
|
namespace common\tests;
|
2016-05-10 15:07:32 +03: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)
|
|
|
|
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
|
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD)
|
|
|
|
*/
|
2018-04-17 23:47:25 +03:00
|
|
|
class UnitTester extends \Codeception\Actor {
|
2016-05-10 15:07:32 +03:00
|
|
|
use _generated\UnitTesterActions;
|
|
|
|
|
2018-04-17 23:47:25 +03:00
|
|
|
/**
|
|
|
|
* Define custom actions here
|
|
|
|
*/
|
|
|
|
|
2016-05-10 15:07:32 +03:00
|
|
|
}
|