| 123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types=1);
- namespace SixShop\AliyunWuliu;
- use PHPUnit\Framework\TestCase;
- class WuLiuClientTest extends TestCase
- {
- private WuLiuClient $client;
- protected function setUp(): void
- {
- $this->client = app(WuLiuClient::class);
- }
- public function testKdi(): void
- {
- $result = $this->client->kdi('YT1164820926068');
- dump($result);
- }
- public function testGetExpressList(): void
- {
- $result = $this->client->getExpressList();
- dump($result);
- }
- }
|