this repo has no description
1<?php
2
3namespace Tests\Feature;
4
5// use Illuminate\Foundation\Testing\RefreshDatabase;
6use Tests\TestCase;
7
8class 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}