14 lines
377 B
PHP
14 lines
377 B
PHP
<?php
|
|
namespace ProVM\Integration;
|
|
|
|
require __DIR__ . '/AbstractIntegration.php';
|
|
|
|
class HomeTest extends AbstractIntegration
|
|
{
|
|
public function testLoad(): void
|
|
{
|
|
$response = $this->client->get('/');
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
$this->assertStringContainsString('Incoviba', $response->getBody()->getContents());
|
|
}
|
|
} |