hosp_2025/tests/Feature/ExampleTest.php

19 lines
321 B
PHP
Raw Normal View History

2025-12-11 15:10:26 -04:00
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}