Files
backend/tests/Controller/ServiceControllerTest.php
2026-05-27 19:36:32 +03:00

17 lines
334 B
PHP

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