webarchi/tests/Controller/ProjectControllerTest.php

17 lines
334 B
PHP

<?php
namespace App\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
final class ProjectControllerTest extends WebTestCase
{
public function testIndex(): void
{
$client = static::createClient();
$client->request('GET', '/project');
self::assertResponseIsSuccessful();
}
}