ExampleTest.php 294 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Tests\Feature;
  4. use Tests\TestCase;
  5. /**
  6. * @internal
  7. * @coversNothing
  8. */
  9. class ExampleTest extends TestCase
  10. {
  11. public function testTheApplicationReturnsSuccessfulResponse()
  12. {
  13. $this->get('/')
  14. ->assertSuccessful();
  15. }
  16. }