futtern/tests/Controller/HomeTest.php

18 lines
403 B
PHP
Raw Normal View History

2024-06-10 19:16:55 +02:00
<?php declare(strict_types=1);
2024-06-10 20:22:44 +02:00
namespace App\Tests\Controller;
2024-06-10 19:16:55 +02:00
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
final class HomeTest extends WebTestCase
{
public function testSomething(): void
{
$client = static::createClient();
$client->request('GET', '/');
$this->assertResponseIsSuccessful();
$this->assertSelectorTextContains('h1', 'Halloo');
}
}