| 123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Lakala\Service;
- use PHPUnit\Framework\Attributes\Test;
- use PHPUnit\Framework\TestCase;
- class LaepIndustryServiceTest extends TestCase
- {
- private LaepIndustryService $laepIndustryService;
- protected function setUp(): void
- {
- $this->laepIndustryService = app(LaepIndustryService::class);
- }
- #[Test]
- public function ewalletBalanceQuery()
- {
- $response = $this->laepIndustryService->ewalletBalanceQuery([
- 'merchantNo' => '822451048160BXH',
- 'payType' => '03',
- ]);
- dump($response);
- }
- }
|