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