Files
piratepoet/packages/php/email-editor/tests/unit/_bootstrap.php
Jan Lysý d38e6bb1b9 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]
2024-09-23 15:16:59 +02:00

17 lines
360 B
PHP

<?php declare(strict_types = 1);
$console = new \Codeception\Lib\Console\Output([]);
if (!function_exists('esc_attr')) {
function esc_attr($attr) {
return $attr;
}
}
abstract class MailPoetUnitTest extends \Codeception\TestCase\Test {
protected $runTestInSeparateProcess = false;
protected $preserveGlobalState = false;
}
include '_stubs.php';