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

14 lines
378 B
PHP
Raw Normal View History

2025-04-29 21:42:57 -04:00
<?php
namespace ProVM\Integration;
use ProVM\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());
}
}