| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace LogisticZopService;
- use App\Services\LogisticZopService;
- 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([]);
- dd($result);
- }
- }
|