request-bundle/tests/_support/UnitTester.php
Rinsvent 36d4a935b2 заготовка для проекта
Есть listener обрабатывающий запрос.
Валидирующий данные
трансформирующие его в дто
Добавил тесты
и конфигурации для докера
Добавил зависимости
2021-07-24 23:21:24 +07:00

28 lines
592 B
PHP

<?php
namespace Rinsvent\RequestBundle\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 UnitTester extends \Codeception\Actor
{
use _generated\UnitTesterActions;
/**
* Define custom actions here
*/
}