Files
wyczarujprezent.pl/modules/ps_eventbus/tests/System/Tests/BaseTestCase.php
2024-10-28 22:14:22 +01:00

23 lines
595 B
PHP

<?php
namespace PrestaShop\Module\PsEventbus\Tests\System\Tests;
use PHPUnit\Framework\TestCase;
class BaseTestCase extends TestCase
{
/**
* @var \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer
*/
protected $container;
public function __construct($name = null, array $data = [], $dataName = '')
{
parent::__construct($name, $data, $dataName);
$this->container = new \PrestaShop\ModuleLibServiceContainer\DependencyInjection\ServiceContainer(
'ps_eventbus_test',
__DIR__ . '/../'
);
}
}