Files
faveo/tests/Feature/RouteTest.php
KNaveenraj-ladybird 59bb2de2a4 fix
2023-10-26 22:17:56 +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);
}
}