rater/tests/Integration/Controller/IndexControllerTest.php
2026-06-02 16:53:17 +00:00

17 lines
405 B
PHP

<?php
namespace App\Tests\Integration\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class IndexControllerTest extends WebTestCase
{
public function testSomething(): void
{
$client = static::createClient();
$crawler = $client->request('GET', '/');
$this->assertResponseIsSuccessful();
$this->assertSelectorTextContains('h1', 'Rater');
}
}