This commit is contained in:
2024-04-07 10:12:48 +03:30
parent c9ec75388e
commit ea278dbb9f

View File

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