LedgerServiceTest.php 409 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Lakala\Service;
  4. use PHPUnit\Framework\TestCase;
  5. class LedgerServiceTest extends TestCase
  6. {
  7. private LedgerService $ledgerService;
  8. protected function setUp(): void
  9. {
  10. $this->ledgerService = app(LedgerService::class);
  11. }
  12. public function testApplyLedgerReceiver():void
  13. {
  14. $this->ledgerService->applyLedgerReceiver();
  15. }
  16. }