Mercurial > borealpoint
annotate tests/Feature/ExampleTest.php @ 2:90296614b7e2 default tip
Adding in the base for the clients table
| author | luka |
|---|---|
| date | Thu, 28 Aug 2025 20:55:40 -0400 |
| parents | 9d7dcd54c677 |
| children |
| rev | line source |
|---|---|
| 0 | 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 } |
