Files
AFC-Demo/tests/Feature/ExampleTest.php
T

19 lines
331 B
PHP
Raw Normal View History

2025-10-16 14:22:46 +02: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(route('home'));
$response->assertStatus(200);
}
}