/
devron
/
ecomm-app
Обзор
Документация
Войти
/
devron
/
ecomm-app
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/Feature/HttpTest.php
22 строки
430 B
Romulus
first init
17 апр 2024, 15:18
17 апр 2024, 15:18
6886bc2
Код
Авторство
О чём код?
<?php namespace Tests\Feature; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Foundation\Testing\WithFaker; use Tests\TestCase; class HttpTest extends TestCase { /** * A basic feature test example. */ public function test_example(): void { $response = $this->get('/api/v1/dashboard/categories'); $response->assertStatus(200); // dd($response->json()); } }