<?php

namespace $NAMESPACE$;

use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;

class $CLASS$ extends TestCase
{
    public function test_example(): void
    {
        $this->get('/');
            ->assertStatus(200);
    }
}
