Files
laravel-modules-template/stubs/nwidart-stubs/tests/feature.stub

19 lines
299 B
Plaintext

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