Files
piratepoet/tests/unit/_bootstrap.php
Pavel Dohnal c15c693507 Add method for creating custom fields in API
[MAILPOET-2041]
2019-05-30 13:03:33 -04:00

17 lines
311 B
PHP

<?php
function __($text) {
return $text;
}
define('ABSPATH', '/');
$console = new \Codeception\Lib\Console\Output([]);
abstract class MailPoetUnitTest extends \Codeception\TestCase\Test {
protected $runTestInSeparateProcess = false;
protected $preserveGlobalState = false;
}
include '_fixtures.php';