Files
AeonDumpManager/tests/TestBootstrap.php
T

13 lines
304 B
PHP
Executable File

<?php declare(strict_types=1);
use Shopware\Core\TestBootstrapper;
$loader = (new TestBootstrapper())
->addCallingPlugin()
->addActivePlugins('AeonDumpManager')
->setForceInstallPlugins(true)
->bootstrap()
->getClassLoader();
$loader->addPsr4('AeonDumpManager\\Tests\\', __DIR__);