Files
oficial/app/tests/integration/HomeTest.php
2025-05-08 11:13:23 -04:00

15 lines
372 B
PHP

<?php
namespace Test\Integration;
use Tests\Extension\AbstractIntegration;
class HomeTest extends AbstractIntegration
{
public function testLoad(): void
{
$response = $this->client->get('/');
$this->assertEquals(200, $response->getStatusCode());
$this->assertStringContainsString('Incoviba', $response->getBody()->getContents());
}
}