© 2026 Hedgehog Software, LLC
public interface IAzureBlobStorage { UsersContext Users { get; } }
var azureBlobStorage = Substitute.For<IAzureBlobStorage>(); azureBlobStorage .Users .WithId(Arg.Any<Guid>()) .GetProfileImageOrDefault() .Returns(Substitute.For<BlobClient>());