설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExampleTest.php 359B

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