Files
faveo/tests/Feature/RouteTest.php
KNaveenraj-ladybird 34307d5368 fix
2023-10-09 17:49:49 +05:30

24 lines
391 B
PHP
Executable File

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class RouteTest extends TestCase
{
/**
* A basic feature test example.
*
* @return void
*/
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}