Files
BarangaySystem/tests/Feature/ExampleTest.php
2026-06-06 18:43:00 +08:00

21 lines
294 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature;
use Tests\TestCase;
/**
* @internal
* @coversNothing
*/
class ExampleTest extends TestCase
{
public function testTheApplicationReturnsSuccessfulResponse()
{
$this->get('/')
->assertSuccessful();
}
}