| 123456789101112131415161718192021222324252627 |
- <?php
- namespace LogisticQiaoSFService;
- use App\Services\LogisticSFService;
- use Tests\TestCase;
- class LogisticQiaoSFServiceTest extends TestCase
- {
- protected $logisticQiaoSFService;
- protected function setUp(): void
- {
- parent::setUp(); // TODO: Change the autogenerated stub
- $this->logisticQiaoSFService = new LogisticSFService();
- }
- /**
- * @test
- */
- public function testGet()
- {
- $response = $this->logisticQiaoSFService->get(['SF1038651915891','SF1038651413847','SF1038611050071']);
- $this->assertCount(3, $response);
- }
- }
|