toby/tests/Feature/ExampleTest.php
2022-01-10 12:25:52 +01:00

18 lines
247 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature;
use Tests\TestCase;
class ExampleTest extends TestCase
{
public function testExample(): void
{
$response = $this->get("/");
$response->assertStatus(200);
}
}