Files
asset-management-system/tests/Feature/ExampleTest.php

21 lines
412 B
PHP
Raw Normal View History

2025-12-01 06:41:22 +07:00
<?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');
2025-12-01 06:41:22 +07:00
}
}