| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace Tests\Services\LogisticYTSync;
- use App\Jobs\LogisticYTOSync;
- use App\Services\LogisticYTOService;
- use Tests\TestCase;
- class SyncTest extends TestCase
- {
- /** @var LogisticYTOService $service */
- public $service;
- function setUp(): void
- {
- parent::setUp();
- $this->service = app('LogisticYTOService');
- }
- /**
- * @test
- */
- public function format_test()
- {
- LogisticYTOSync::dispatch('YT5781193551713');
- }
- }
|