| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Tests\Services\LogisticZopService;
- use App\Services\LogisticZopService;
- use Carbon\Carbon;
- use Tests\TestCase;
- class LogisticZopServiceTest extends TestCase
- {
- protected $logisticZopService;
- protected function setUp(): void
- {
- parent::setUp(); // TODO: Change the autogenerated stub
- $this->logisticZopService = new LogisticZopService();
- }
- protected function tearDown(): void
- {
- parent::tearDown(); // TODO: Change the autogenerated stub
- }
- /**
- * @test
- */
- public function get_test()
- {
- // $result = $this->logisticZopService->get(['75453288899284']);
- // dd($result);
- $this->assertTrue(true);
- }
- /**
- * @test
- */
- // public function carbon_test()
- // {
- // $result =Carbon::parse(1617293640000)->toDateTimeString();
- // dd($result);
- // }
- }
|