/tests/Feature/ExampleTest.php

https://bitbucket.org/ErickJoaquin/pruebainformatik · PHP · 21 lines · 12 code · 4 blank · 5 comment · 0 complexity · fe192afe9fd2a6983ff67f5630fa05af MD5 · raw file

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