test: add HomeControllerTest to generate PHPUnit report

This commit is contained in:
Serreau Jovann
2026-04-01 17:47:12 +02:00
parent 2a70b63549
commit 197916c4e0

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class HomeControllerTest extends WebTestCase
{
public function testIndex(): void
{
$client = static::createClient();
$client->request('GET', '/');
$this->assertResponseIsSuccessful();
}
}