| DIR: /home/cardxfeb/www/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/ |
| Current File : //home/cardxfeb/www/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/test.stub |
<?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.
*/
public function test_example(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}
|