Files
asset-management-system/tests/Feature/ExampleTest.php
2025-12-01 08:10:58 +07:00

21 lines
412 B
PHP

<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
// Halaman root meredirect ke /index.
$response->assertRedirect('/index');
}
}