lk-students/tests/Feature/ExampleTest.php

20 lines
353 B
PHP
Raw Normal View History

2024-04-17 10:29:25 +03:00
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
2024-04-22 11:06:10 +03:00
public function testTheApplicationReturnsASuccessfulResponse(): void
2024-04-17 10:29:25 +03:00
{
$response = $this->get('/');
$response->assertStatus(200);
}
}