Files
oficial/app/tests/integration/HomeTest.php

15 lines
372 B
PHP
Raw Normal View History

2025-04-29 21:42:57 -04:00
<?php
2025-05-08 11:13:17 -04:00
namespace Test\Integration;
2025-04-29 21:42:57 -04:00
2025-05-08 11:13:17 -04:00
use Tests\Extension\AbstractIntegration;
2025-04-29 22:25:32 -04:00
class HomeTest extends AbstractIntegration
2025-04-29 21:42:57 -04:00
{
public function testLoad(): void
{
$response = $this->client->get('/');
$this->assertEquals(200, $response->getStatusCode());
$this->assertStringContainsString('Incoviba', $response->getBody()->getContents());
}
2025-05-08 11:13:17 -04:00
}