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 | use RefreshDatabase; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | |||
12 | /** |
||
13 | * A basic test example. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function test_homepage() |
||
18 | { |
||
19 | $response = $this->get('/'); |
||
20 | |||
21 | $response->assertStatus(200); |
||
22 | } |
||
23 | } |
||
24 |