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

15 lines
372 B
PHP
Raw Permalink Normal View History

<?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());
}
}