LogisticZopServiceTest.php 626 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace LogisticZopService;
  3. use App\Services\LogisticZopService;
  4. use Tests\TestCase;
  5. class LogisticZopServiceTest extends TestCase
  6. {
  7. protected $logisticZopService;
  8. protected function setUp(): void
  9. {
  10. parent::setUp(); // TODO: Change the autogenerated stub
  11. $this->logisticZopService = new LogisticZopService();
  12. }
  13. protected function tearDown(): void
  14. {
  15. parent::tearDown(); // TODO: Change the autogenerated stub
  16. }
  17. /**
  18. * @test
  19. */
  20. public function get_test()
  21. {
  22. $result = $this->logisticZopService->get([]);
  23. dd($result);
  24. }
  25. }