Files
kulakpos_web/public/restaurant/stubs/nwidart-stubs/tests/feature.stub

19 lines
299 B
Plaintext
Raw Normal View History

2026-03-15 17:08:23 +07:00
<?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);
}
}