Files
glastree/tests/Feature/ExampleTest.php
T

20 lines
359 B
PHP
Raw Normal View History

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