public async Task ShouldGetBlobUrlAsync()
        {
            Uri savedUrl = await SavedContentAsync(_fileName);

            var url = await _contentStorage.GetBlobUrlAsync(_fileName, _containerName);

            url.Should().BeEquivalentTo(savedUrl);
        }