Core/stubs/nwidart-stubs/feature-test.stub

23 lines
385 B
Plaintext
Raw Permalink Normal View History

2023-05-10 15:15:50 +00:00
<?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.
*
* @return void
*/
public function testExample()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}