14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
final class HealthEndpointTest extends TestCase
|
|
{
|
|
public function test_health_endpoint_is_reachable(): void
|
|
{
|
|
$this->get('/up')->assertSuccessful();
|
|
}
|
|
}
|