Files
backend/tests/Feature/V2/Dashboard/RoadPatrolProject/MapTest.php
2024-04-07 10:12:48 +03:30

22 lines
434 B
PHP

<?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);
}
}