How the Azure Function like the one below could be unit tested?How blob storage can be mocked?
[Function("Blob_GetTodoById")]public IActionResult GetTodoById( [HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = Route +"/{id}")] HttpRequest req, [BlobInput(BlobPath +"/{id}.json", Connection = "AzureWebJobsStorage")] string json, string id){ logger.LogInformation("Getting todo item by id"); if (json == null) { logger.LogInformation($"Item {id} not found"); return new NotFoundResult(); } return new OkObjectResult(JsonConvert.DeserializeObject<Todo>(json));}