LogisticZopServiceTest.php 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace Tests\Services\LogisticZopService;
  3. use App\Services\LogisticZopService;
  4. use Carbon\Carbon;
  5. use Tests\TestCase;
  6. class LogisticZopServiceTest extends TestCase
  7. {
  8. protected $logisticZopService;
  9. protected function setUp(): void
  10. {
  11. parent::setUp(); // TODO: Change the autogenerated stub
  12. $this->logisticZopService = new LogisticZopService();
  13. }
  14. protected function tearDown(): void
  15. {
  16. parent::tearDown(); // TODO: Change the autogenerated stub
  17. }
  18. /**
  19. * @test
  20. */
  21. public function get_test()
  22. {
  23. // $result = $this->logisticZopService->get(['75453288899284']);
  24. // dd($result);
  25. $this->assertTrue(true);
  26. }
  27. /**
  28. * @test
  29. */
  30. // public function carbon_test()
  31. // {
  32. // $result =Carbon::parse(1617293640000)->toDateTimeString();
  33. // dd($result);
  34. // }
  35. }