buckets/tests/KernelBootTest.php

16 lines
301 B
PHP
Raw Normal View History

2026-06-15 01:04:32 +02:00
<?php
namespace App\Tests;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
final class KernelBootTest extends KernelTestCase
{
public function testKernelBootsInTestEnv(): void
{
self::bootKernel();
self::assertSame('test', self::$kernel->getEnvironment());
}
}