This commit is contained in:
2024-07-12 18:57:24 +02:00
parent c5842e58f2
commit 1d93997d82
85 changed files with 11117 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}