Files
connector-gemini/tests/bootstrap.php
AUDUL 03e07141af add tests (#1)
* add tests
2025-06-10 16:08:52 +02:00

19 lines
384 B
PHP

<?php
declare(strict_types=1);
use CodeRhapsodie\Tests\Integration\ConnectorGemini\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
require_once dirname(__DIR__) . '/vendor/autoload.php';
chdir(dirname(__DIR__));
$kernel = new Kernel('test', true);
$kernel->boot();
$application = new Application($kernel);
$application->setAutoExit(false);
$kernel->shutdown();