mirror of
https://github.com/yiisoft/app.git
synced 2026-03-15 20:46:48 +01:00
27 lines
584 B
PHP
27 lines
584 B
PHP
<?php
|
|
namespace App\Tests;
|
|
|
|
/**
|
|
* 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 void pause()
|
|
*
|
|
* @SuppressWarnings(PHPMD)
|
|
*/
|
|
class FunctionalTester extends \Codeception\Actor
|
|
{
|
|
use _generated\FunctionalTesterActions;
|
|
|
|
/**
|
|
* Define custom actions here
|
|
*/
|
|
}
|