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

17 lines
336 B
PHP

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