| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Tests\Services\LogisticSFSync;
- use App\Jobs\LogisticSFSync;
- use Tests\TestCase;
- use App\Traits\TestMockSubServices;
- class HandleTest extends TestCase
- {
- use TestMockSubServices;
- private $data;
- private $amount=2;
- function setUp(): void
- {
- parent::setUp();
- }
- public function testReturned()
- {
- $this->assertTrue(true);
- }
- function tearDown(): void
- {
- parent::tearDown();
- }
- /**
- * @test
- */
- public function handle_test()
- {
- LogisticSFSync::dispatch('SF1320174725157');
- $this->assertTrue(true);
- }
- }
|