LaravelTest
19 строк · 359.0 Байт
1<?php
2
3namespace Tests\Feature;
4
5// use Illuminate\Foundation\Testing\RefreshDatabase;
6use Tests\TestCase;
7
8class ExampleTest extends TestCase
9{
10/**
11* A basic test example.
12*/
13public function test_the_application_returns_a_successful_response(): void
14{
15$response = $this->get('/');
16
17$response->assertStatus(200);
18}
19}
20