exampleTest.php 218 B

1234567891011121314
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. class exampleTest extends TestCase
  5. {
  6. public function test_example(): void
  7. {
  8. $response = $this->get('/');
  9. $response->assertStatus(302);
  10. }
  11. }