flbxcup/tests/Feature/ExampleTest.php
2025-06-23 23:12:40 +02:00

18 lines
315 B
PHP

<?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()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}