. */ declare(strict_types=1); namespace Tests\Feature; use Tests\TestCase; /** * Class ExampleTest */ class ExampleTest extends TestCase { /** * A basic test example. */ public function testBasicTest() { $response = $this->get('/login'); $response->assertStatus(200); } }