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

14 lines
377 B
PHP
Raw Normal View History

2025-04-29 21:42:57 -04:00
<?php
namespace ProVM\Integration;
2025-04-29 22:25:32 -04:00
require __DIR__ . '/AbstractIntegration.php';
2025-04-29 21:42:57 -04:00
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());
}
}