mirror of
http://124.126.16.154:8888/singularity/hdk-skeleton.git
synced 2026-01-15 07:15:06 +08:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* This file is part of Hyperf.
|
|
*
|
|
* @link https://www.hyperf.io
|
|
* @document https://hyperf.wiki
|
|
* @contact group@hyperf.io
|
|
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
|
|
*/
|
|
|
|
namespace Test;
|
|
|
|
use Hyperf\Testing\Client;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Class HttpTestCase.
|
|
* @method get($uri, $data = [], $headers = [])
|
|
* @method post($uri, $data = [], $headers = [])
|
|
* @method json($uri, $data = [], $headers = [])
|
|
* @method file($uri, $data = [], $headers = [])
|
|
* @method request($method, $path, $options = [])
|
|
*/
|
|
abstract class HttpTestCase extends TestCase
|
|
{
|
|
/**
|
|
* @var Client
|
|
*/
|
|
protected Client $client;
|
|
|
|
/**
|
|
* @param string|null $name
|
|
* @param array<int, mixed> $data
|
|
* @param int|string $dataName
|
|
*/
|
|
public function __construct(?string $name = null, array $data = [], int|string $dataName = '')
|
|
{
|
|
parent::__construct($name, $data, $dataName);
|
|
$this->client = make(Client::class);
|
|
}
|
|
|
|
public function __call($name, $arguments)
|
|
{
|
|
return $this->client->{$name}(...$arguments);
|
|
}
|
|
}
|