Files
chatroom/tests/Feature/ExampleTest.php

22 lines
382 B
PHP
Raw Permalink Normal View History

2026-02-26 12:02:00 +08:00
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
2026-02-26 12:02:00 +08:00
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
2026-02-26 12:02:00 +08:00
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}