Etapes 2 et 3

This commit is contained in:
2025-06-07 15:00:30 +02:00
parent 9829dfc6b5
commit 03fa9d79d4
62 changed files with 13582 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}