This commit is contained in:
KNaveenraj-ladybird
2023-09-12 18:19:44 +05:30
parent 5e0f3221b0
commit 59bb2de2a4
3 changed files with 78 additions and 0 deletions

23
tests/Feature/RouteTest.php Executable file
View File

@@ -0,0 +1,23 @@
<?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);
}
}