clara_old/tests/Feature/ExampleTest.php
Daeng Deni Mardaeni 6210e33a3b Initial commit
2023-07-03 14:58:31 +07:00

22 lines
380 B
PHP

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