| 12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Wechat\Service;
- use PHPUnit\Framework\Attributes\Test;
- use PHPUnit\Framework\TestCase;
- class ExpressServiceTest extends TestCase
- {
- private ExpressService $expressService;
- protected function setUp(): void
- {
- $this->expressService = app(ExpressService::class);
- }
- #[Test]
- public function getAllDelivery()
- {
- $res = $this->expressService->getAllDelivery();
- dump($res);
- }
- }
|