Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
30 lines
624 B
PHP
Executable File
30 lines
624 B
PHP
Executable File
<?php
|
|
|
|
use Codeception\Actor;
|
|
use Codeception\Lib\Friend;
|
|
|
|
|
|
/**
|
|
* 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 Friend haveFriend($name, $actorClass = null)
|
|
*
|
|
* @SuppressWarnings(PHPMD)
|
|
*/
|
|
class UnitTester extends Actor
|
|
{
|
|
use _generated\UnitTesterActions;
|
|
|
|
/**
|
|
* Define custom actions here
|
|
*/
|
|
}
|