This commit is contained in:
person-programmer
2025-12-02 13:27:19 +07:00
parent 461a740be0
commit 9c590d0dbf
100 changed files with 3677 additions and 119 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);
}
}