| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Tests\Services\LogisticAliJiSuSync;
- use App\Jobs\LogisticAliJiSuSync;
- use App\Jobs\LogisticYTOSync;
- use Tests\TestCase;
- class SyncTest extends TestCase
- {
- function setUp(): void
- {
- parent::setUp();
- }
- /**
- * @test
- */
- public function format_test()
- {
- LogisticAliJiSuSync::dispatch('9884189700485');
- }
- }
|