2026-06-02 18:53:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Tests\Integration\Controller;
|
|
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
|
|
2026-06-02 20:30:18 +02:00
|
|
|
class SubjectControllerTest extends WebTestCase
|
2026-06-02 18:53:17 +02:00
|
|
|
{
|
|
|
|
|
public function testSomething(): void
|
|
|
|
|
{
|
|
|
|
|
$client = static::createClient();
|
|
|
|
|
$crawler = $client->request('GET', '/');
|
|
|
|
|
|
|
|
|
|
$this->assertResponseIsSuccessful();
|
|
|
|
|
$this->assertSelectorTextContains('h1', 'Rater');
|
|
|
|
|
}
|
|
|
|
|
}
|