comparison tests/Feature/ExampleTest.php @ 0:9d7dcd54c677

Initial Commit and package setup
author luka
date Sat, 23 Aug 2025 22:20:51 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9d7dcd54c677
1 <?php
2
3 namespace Tests\Feature;
4
5 // use Illuminate\Foundation\Testing\RefreshDatabase;
6 use Tests\TestCase;
7
8 class ExampleTest extends TestCase
9 {
10 /**
11 * A basic test example.
12 */
13 public function test_the_application_returns_a_successful_response(): void
14 {
15 $response = $this->get('/');
16
17 $response->assertStatus(200);
18 }
19 }