ExampleTest.php 147 B

1234567
  1. <?php
  2. test('the application returns a successful response', function () {
  3. $response = $this->get('/');
  4. $response->assertStatus(200);
  5. });