LaepIndustryServiceTest.php 615 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Lakala\Service;
  4. use PHPUnit\Framework\Attributes\Test;
  5. use PHPUnit\Framework\TestCase;
  6. class LaepIndustryServiceTest extends TestCase
  7. {
  8. private LaepIndustryService $laepIndustryService;
  9. protected function setUp(): void
  10. {
  11. $this->laepIndustryService = app(LaepIndustryService::class);
  12. }
  13. #[Test]
  14. public function ewalletBalanceQuery()
  15. {
  16. $response = $this->laepIndustryService->ewalletBalanceQuery([
  17. 'merchantNo' => '822451048160BXH',
  18. 'payType' => '03',
  19. ]);
  20. dump($response);
  21. }
  22. }