GetDeliveryTest.php 748 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Tests\Services\DeliveryService;
  3. use App\Services\DeliveryService;
  4. class GetDeliveryTest extends \Tests\TestCase
  5. {
  6. /** @var DeliveryService $service */
  7. private $service;
  8. private $data = [];
  9. protected function setUp(): void
  10. {
  11. parent::setUp(); // TODO: Change the autogenerated stub
  12. $this->service = app(DeliveryService::class);
  13. $this->data['printStr'] = "SO210621008542";
  14. }
  15. public function testGetDeliveryTest()
  16. {
  17. // $params = $this->service->getDelivery($this->data['printStr']);
  18. // dd($params);
  19. $this->assertTrue(true);
  20. }
  21. protected function tearDown(): void
  22. {
  23. parent::tearDown(); // TODO: Change the autogenerated stub
  24. }
  25. }