15 lines
372 B
PHP
15 lines
372 B
PHP
|
<?php
|
||
|
namespace Test\Integration;
|
||
|
|
||
|
use 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());
|
||
|
}
|
||
|
}
|