UpgradeTest.php 371 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Tests\TestCase;
  6. class UpgradeTest extends TestCase
  7. {
  8. /**
  9. * A basic feature test example.
  10. */
  11. public function test_example(): void
  12. {
  13. $response = $this->get('/');
  14. $response->assertStatus(200);
  15. }
  16. }