| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Lakala\Service;
- use PHPUnit\Framework\TestCase;
- class LedgerServiceTest extends TestCase
- {
- private LedgerService $ledgerService;
- protected function setUp(): void
- {
- $this->ledgerService = app(LedgerService::class);
- }
- public function testApplyLedgerReceiver():void
- {
- $this->ledgerService->applyLedgerReceiver();
- }
- }
|