Files
oficial/app/tests/integration/HomeTest.php
2025-04-29 23:57:49 -04:00

14 lines
378 B
PHP

<?php
namespace ProVM\Integration;
use ProVM\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());
}
}