ExampleTest.php 163 B

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