Issues (36)

tests/Feature/ExampleTest.php (1 issue)

Severity
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
The trait Illuminate\Foundation\Testing\RefreshDatabase requires some properties which are not provided by Tests\Feature\ExampleTest: $seeder, $seed, $connectionsToTransact, $dropTypes, $dropViews
Loading history...
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