| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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(payType: '03');
- dump($response);
- }
- #[Test]
- public function ewalletSettleQuery()
- {
- $response = $this->laepIndustryService->ewalletSettleQuery('SR2024000184315');
- dump($response);
- }
- #[Test]
- public function ewalletSettleProfile()
- {
- $response = $this->laepIndustryService->ewalletSettleProfile('SR2024000184315', '01');
- dump($response);
- }
- }
|