Teren-app/tests/Feature/InsertDatabaseTest.php
2025-03-25 21:38:24 +01:00

23 lines
451 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
use App\Models\User;
class InsertDatabaseTest extends TestCase
{
use RefreshDatabase;
/**
* A basic feature test example.
*/
public function test_example(): void
{
$this->actingAs($user = User::factory()->create());
$this->assertTrue(false);
}
}