123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- declare(strict_types=1);
- namespace HyperfTest;
- use Hyperf\Testing\Client;
- use PHPUnit\Framework\TestCase;
- abstract class HttpTestCase extends TestCase
- {
-
- protected $client;
- public function __construct($name = null, array $data = [], $dataName = '')
- {
- parent::__construct($name, $data, $dataName);
- $this->client = make(Client::class);
- }
- public function __call($name, $arguments)
- {
- return $this->client->{$name}(...$arguments);
- }
- }
|