| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace Tests\Feature;
- use Tests\TestCase;
- /**
- * @internal
- * @coversNothing
- */
- class ExampleTest extends TestCase
- {
- public function testTheApplicationReturnsSuccessfulResponse()
- {
- $this->get('/')
- ->assertSuccessful();
- }
- }
|