mirror of
https://github.com/phpmon/website
synced 2025-08-06 22:30:09 +02:00
18 lines
269 B
PHP
18 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class HomepageReachabilityTest extends TestCase
|
|
{
|
|
public function test_homepage_is_reachable()
|
|
{
|
|
$response = $this->get('/');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
}
|