Files
zemailnator/tests/Feature/ExampleTest.php
2025-11-14 01:51:35 -08:00

26 lines
451 B
PHP

<?php
namespace Tests\Feature;
use Tests\Concerns\LoadsApplicationData;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use LoadsApplicationData;
protected function setUp(): void
{
parent::setUp();
$this->loadApplicationData();
}
/** @test */
public function the_application_returns_a_successful_response()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}