StocksNew/stubs/nwidart-stubs/feature-test.stub
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

21 lines
364 B
Plaintext

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