Files
CVAtron/tests/Feature/ExampleTest.php
Matthias Guillitte 0eaf20efa7
Some checks failed
linter / quality (push) Successful in 3m37s
tests / ci (push) Failing after 8m4s
Basic Laravel project
2025-08-15 17:55:11 +02:00

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