vd/tests/ExampleTest.php

12 lines
217 B
PHP

<?php
use App\Domains\Real\Services\OrderService;
require_once realpath(dirname(__FILE__) . '/TestCase.php');
$service = app(OrderService::class);
$res = $service->index(['type' => 2, 'id' => 253371]);
dd($res);