service = app('OrderService'); } /** * @test */ public function getCreatedOrderSyncAt() { $key = config('sync.order_sync.cache_prefix.created_at'); $data = $this->service->getOrderSyncAt($key); $this->assertNotEmpty($data); } /** * @test */ public function getUpdatedOrderSyncAt() { $key = config('sync.order_sync.cache_prefix.updated_at'); $data = $this->service->getOrderSyncAt($key,'renewal'); $this->assertNotEmpty($data); } public function tearDown(): void { parent::tearDown(); // TODO: Change the autogenerated stub } }