This commit is contained in:
2025-01-24 18:02:20 +03:00
parent 32304cc806
commit 2ead026265
67 changed files with 10672 additions and 4 deletions
+21
View File
@@ -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);
}
}