12345678910111213141516171819202122 |
- <?php
-
- namespace {{ namespace }};
-
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Tests\TestCase;
-
- class {{ class }} extends TestCase
- {
- /**
- * A basic feature test example.
- *
- * @return void
- */
- public function testExample()
- {
- $response = $this->get('/');
-
- $response->assertStatus(200);
- }
- }
|