Bootstrap email-editor unit tests

I also replaced using verify function by asserts, which will be removed in the higher version of phpunit.
[MAILPOET-6216]
This commit is contained in:
Jan Lysý
2024-09-12 18:29:51 +02:00
committed by Jan Lysý
parent 98712db36d
commit d38e6bb1b9
17 changed files with 3838 additions and 89 deletions

View File

@ -0,0 +1,24 @@
<?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)
* @method void pause()
*
* @SuppressWarnings(PHPMD)
*/
class UnitTester extends \Codeception\Actor
{
use _generated\UnitTesterActions;
/**
* Define custom actions here
*/
}