Files
alrahma_sunday_school_api/tests/Feature/HealthEndpointTest.php
T
2026-04-23 00:04:35 -04:00

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