No Description
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.

test.stub 393B

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